00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef __EPP_DOMAINDATA_H
00029 #define __EPP_DOMAINDATA_H
00030
00031 #include "epp_eppdata.h"
00032 #include <vector>
00033
00034
00035 namespace eppobject { namespace domain {
00036
00037
00038
00039 enum epp_DomainStatusType {
00040 HOLD,
00041 INACTIVE,
00042 LOCK,
00043 NEW,
00044 OK,
00045 PENDING_DELETE,
00046 PENDING_TRANSFER,
00047 PENDING_VERIFICATION,
00048 CLIENT_HOLD,
00049 CLIENT_LOCK,
00050 CLIENT_TRANSFER_PROHIBITED,
00051 ACTIVE,
00052 };
00053 typedef refcnt_ptr<epp_DomainStatusType> epp_DomainStatusType_ref;
00054
00055 enum epp_DomainPeriodUnitType {
00056 YEAR,
00057 MONTH,
00058 };
00059 typedef refcnt_ptr<epp_DomainPeriodUnitType> epp_DomainPeriodUnitType_ref;
00060
00061 enum epp_DomainContactType {
00062 ADMIN,
00063 BILLING,
00064 TECH,
00065 };
00066 typedef refcnt_ptr<epp_DomainContactType> epp_DomainContactType_ref;
00067
00068
00069
00070 class epp_DomainStatus;
00071 typedef vector<epp_DomainStatus> epp_domain_status_seq;
00072 typedef refcnt_ptr<epp_domain_status_seq> epp_domain_status_seq_ref;
00073
00074 class epp_DomainContact;
00075 typedef vector<epp_DomainContact> epp_domain_contact_seq;
00076 typedef refcnt_ptr<epp_domain_contact_seq> epp_domain_contact_seq_ref;
00077
00078 }}
00079 #endif