aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/provider/MCNetService.h
blob: 42c884f8902dea59a5305bfefc4cdcff612c9ff9 (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
//
//  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();
        
	private:
		String * mHostname;
		unsigned int mPort;
		ConnectionType mConnectionType;
		
		void init();
        void fillWithInfo(HashMap * info);
	};
}

#endif
	
#endif /* defined(__MAILCORE__MCNetService__) */