EmailScheduler/MailCore.framework/Versions/A/Headers/MCNetService.h

59 lines
1.3 KiB
C
Raw Normal View History

2014-09-13 17:13:32 -05:00
//
// 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