blob: d3aa5dd747860bf2529b9888baa403e85ba2f435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
//
// MCNetService.h
// mailcore2
//
// Created by Robert Widmann on 4/28/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef __MAILCORE_MCNETSERVICE_H_
#define __MAILCORE_MCNETSERVICE_H_
#include <MailCore/MCBaseTypes.h>
#include <MailCore/MCMessageConstants.h>
#ifdef __cplusplus
namespace mailcore {
class NetService : public Object {
public:
NetService();
virtual ~NetService();
virtual void setHostname(String * hostname);
virtual String * hostname();
virtual void setPort(unsigned int port);
virtual unsigned int port();
virtual void setConnectionType(ConnectionType connectionType);
virtual ConnectionType connectionType();
virtual String * normalizedHostnameWithEmail(String * email);
public: // serialization
static NetService * serviceWithInfo(HashMap * info);
virtual HashMap * info();
public: //subclass behavior
NetService(NetService * other);
virtual String * description();
virtual Object * copy();
private:
String * mHostname;
unsigned int mPort;
ConnectionType mConnectionType;
void init();
void fillWithInfo(HashMap * info);
};
}
#endif
#endif
|