This commit is contained in:
parent
7a11d07def
commit
5d253948bc
|
@ -0,0 +1,54 @@
|
||||||
|
#include "OTE/LPECreateCommand.hpp"
|
||||||
|
#include "se/StandardObjectType.hpp"
|
||||||
|
#include "xml/XMLHelper.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
LPECreateCommand::LPECreateCommand (const std::string& name,
|
||||||
|
const std::string& pw,
|
||||||
|
const std::string* registrantID,
|
||||||
|
const std::vector<std::string>* techContacts,
|
||||||
|
const std::vector<std::string>* nameservers,
|
||||||
|
const std::vector<std::string>* adminContacts,
|
||||||
|
const std::vector<std::string>* billingContacts,
|
||||||
|
const Period* period)
|
||||||
|
: CreateCommand(StandardObjectType::DOMAIN(), name)
|
||||||
|
{
|
||||||
|
std::vector<std::string>::const_iterator p;
|
||||||
|
|
||||||
|
if (period)
|
||||||
|
period->appendPeriod (xmlWriter, objElement);
|
||||||
|
|
||||||
|
if (nameservers)
|
||||||
|
{
|
||||||
|
DOMElement *ns = xmlWriter->appendChild (objElement, "ns");
|
||||||
|
for (p = nameservers->begin(); p != nameservers->end(); p++)
|
||||||
|
XMLHelper::setTextContent
|
||||||
|
(xmlWriter->appendChild (ns, "hostObj"), *p);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (registrantID)
|
||||||
|
{
|
||||||
|
XMLHelper::setTextContent
|
||||||
|
(xmlWriter->appendChild(objElement, "registrant"), *registrantID);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (adminContacts)
|
||||||
|
for (p = adminContacts->begin(); p != adminContacts->end(); p++)
|
||||||
|
xmlWriter->appendChild(objElement, "contact", *p, "type", "admin");
|
||||||
|
|
||||||
|
if (techContacts)
|
||||||
|
for (p = techContacts->begin(); p != techContacts->end(); p++)
|
||||||
|
xmlWriter->appendChild(objElement, "contact", *p, "type", "tech");
|
||||||
|
|
||||||
|
if (billingContacts)
|
||||||
|
for (p = billingContacts->begin(); p != billingContacts->end(); p++)
|
||||||
|
xmlWriter->appendChild(objElement, "contact", *p, "type", "billing");
|
||||||
|
|
||||||
|
XMLHelper::setTextContent
|
||||||
|
(xmlWriter->appendChild
|
||||||
|
(xmlWriter->appendChild
|
||||||
|
(objElement,
|
||||||
|
"authInfo"),
|
||||||
|
"pw"),
|
||||||
|
pw);
|
||||||
|
}
|
|
@ -1,2 +0,0 @@
|
||||||
build/Constants.o common/Constants.d: common/Constants.cpp \
|
|
||||||
common/Constants.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/EPPExceptionTest.o common/EPPExceptionTest.d: \
|
|
||||||
common/EPPExceptionTest.cpp common/EPPException.hpp common/Test.hpp
|
|
|
@ -1,4 +0,0 @@
|
||||||
build/ErrorPkg.o common/ErrorPkg.d: common/ErrorPkg.cpp \
|
|
||||||
common/ErrorPkg.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/EPPException.hpp common/ConfigurationError.hpp common/Logger.hpp \
|
|
||||||
common/StringUtils.hpp common/SystemProperties.hpp
|
|
|
@ -1,4 +0,0 @@
|
||||||
build/Logger.o common/Logger.d: common/Logger.cpp \
|
|
||||||
common/SystemProperties.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/ConfigurationError.hpp \
|
|
||||||
common/AutoMutex.hpp
|
|
|
@ -1,3 +0,0 @@
|
||||||
build/Properties.o common/Properties.d: common/Properties.cpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
config/boolean.h
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/StringUtils.o common/StringUtils.d: common/StringUtils.cpp \
|
|
||||||
common/StringUtils.hpp
|
|
|
@ -1,3 +0,0 @@
|
||||||
build/SystemProperties.o common/SystemProperties.d: \
|
|
||||||
common/SystemProperties.cpp common/SystemProperties.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/init.o common/init.d: common/init.cpp common/SystemProperties.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/ConfigurationError.hpp common/ErrorPkg.hpp \
|
|
||||||
se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
xml/ParsingException.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
se/IPVersion.hpp se/EnumType.hpp se/IllegalArgException.hpp \
|
|
||||||
se/PostalInfoType.hpp se/StandardCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/AddRemType.hpp se/StandardObjectType.hpp \
|
|
||||||
se/ObjectType.hpp se/PeriodUnit.hpp se/PollOperation.hpp \
|
|
||||||
se/TransferOp.hpp xml/XMLParser.hpp xml/XMLInit.hpp
|
|
|
@ -1 +0,0 @@
|
||||||
build/boolean.o config/boolean.d: config/boolean.c config/boolean.h
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/config.o config/config.d: config/config.c config/config.h \
|
|
||||||
config/log.h config/boolean.h config/mem_debug.h
|
|
|
@ -1 +0,0 @@
|
||||||
build/log.o config/log.d: config/log.c config/log.h config/boolean.h
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<schema targetNamespace="urn:X-ote:params:xml:ns:otedomain-1.0"
|
||||||
|
xmlns:oteDomain="urn:X-ote:params:xml:ns:otedomain-1.0"
|
||||||
|
xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
|
||||||
|
xmlns:domain="urn:ietf:params:xml:ns:domain-1.0"
|
||||||
|
xmlns:oteext="urn:X-ote:params:xml:ns:oteext-1.0"
|
||||||
|
xmlns="http://www.w3.org/2001/XMLSchema"
|
||||||
|
elementFormDefault="qualified">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Import common element types.
|
||||||
|
-->
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:eppcom-1.0"
|
||||||
|
schemaLocation="eppcom-1.0.xsd"/>
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:domain-1.0"
|
||||||
|
schemaLocation="domain-1.0.xsd"/>
|
||||||
|
<import namespace="urn:X-ote:params:xml:ns:oteext-1.0" schemaLocation="oteext-1.0.xsd"/>
|
||||||
|
|
||||||
|
<annotation>
|
||||||
|
<documentation>
|
||||||
|
.ote Domain Extensions to the Extensible
|
||||||
|
Provisioning Protocol v1.0. schema.
|
||||||
|
</documentation>
|
||||||
|
</annotation>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Protocol extension framework command elements.
|
||||||
|
-->
|
||||||
|
<element name="registrantTransfer"
|
||||||
|
type="oteDomain:registrantTransferType"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Protocol extension framework response elements.
|
||||||
|
-->
|
||||||
|
<element name="rtrnData" type="oteDomain:rtrnDataType"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Type definitions.
|
||||||
|
-->
|
||||||
|
<complexType name="registrantTransferType">
|
||||||
|
<sequence>
|
||||||
|
<element name="name" type="eppcom:labelType" minOccurs="1"/>
|
||||||
|
<element name="curExpDate" type="date" minOccurs="1"/>
|
||||||
|
<element name="period" type="domain:periodType" minOccurs="0"/>
|
||||||
|
<element name="oteProperties" type="oteDomain:otePropertiesType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
<element name="explanation" type="oteext:explanationType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
the .ote extension domain properties
|
||||||
|
-->
|
||||||
|
<complexType name="otePropertiesType">
|
||||||
|
<sequence>
|
||||||
|
<element name="registrantName" type="eppcom:labelType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
<element name="registrantID" type="oteext:registrantIDType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<element name="eligibilityType" type="oteext:eligType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
<element name="eligibilityName" type="eppcom:labelType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<element name="eligibilityID" type="oteext:eligibilityIDType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<element name="policyReason" type="oteext:policyNumType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<complexType name="rtrnDataType">
|
||||||
|
<sequence>
|
||||||
|
<element name="name" type="eppcom:labelType" minOccurs="1"/>
|
||||||
|
<element name="exDate" type="dateTime" minOccurs="0"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
End of schema.
|
||||||
|
-->
|
||||||
|
</schema>
|
||||||
|
|
|
@ -0,0 +1,196 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<schema targetNamespace="urn:X-ote:params:xml:ns:oteext-1.0"
|
||||||
|
xmlns:oteext="urn:X-ote:params:xml:ns:oteext-1.0"
|
||||||
|
xmlns:eppcom="urn:ietf:params:xml:ns:eppcom-1.0"
|
||||||
|
xmlns:epp="urn:ietf:params:xml:ns:epp-1.0"
|
||||||
|
xmlns="http://www.w3.org/2001/XMLSchema"
|
||||||
|
elementFormDefault="qualified">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Import common element types.
|
||||||
|
-->
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:eppcom-1.0" schemaLocation="eppcom-1.0.xsd"/>
|
||||||
|
<import namespace="urn:ietf:params:xml:ns:epp-1.0" schemaLocation="epp-1.0.xsd"/>
|
||||||
|
|
||||||
|
<annotation>
|
||||||
|
<documentation>
|
||||||
|
.ote Extensions to the
|
||||||
|
Extensible Provisioning Protocol v1.0 schema.
|
||||||
|
</documentation>
|
||||||
|
</annotation>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Protocol extension framework elements.
|
||||||
|
-->
|
||||||
|
<element name="command" type="oteext:commandType"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Protocol extension type definitions.
|
||||||
|
-->
|
||||||
|
<complexType name="commandType">
|
||||||
|
<sequence>
|
||||||
|
<choice>
|
||||||
|
<element name="registrantTransfer" type="epp:readWriteType"/>
|
||||||
|
</choice>
|
||||||
|
<element name="clTRID" type="epp:trIDStringType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Command-response framework extension elements.
|
||||||
|
-->
|
||||||
|
<element name="create" type="oteext:createType"/>
|
||||||
|
<element name="update" type="oteext:updateType"/>
|
||||||
|
<element name="infData" type="oteext:infDataType"/>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
.ote update command extension
|
||||||
|
-->
|
||||||
|
<complexType name="updateType">
|
||||||
|
<sequence>
|
||||||
|
<element name="oteProperties" type="oteext:otePropertiesType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
<element name="explanation" type="oteext:explanationType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
.ote create command extension
|
||||||
|
-->
|
||||||
|
<complexType name="createType">
|
||||||
|
<sequence>
|
||||||
|
<element name="oteProperties" type="oteext:otePropertiesType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
.ote info response extension
|
||||||
|
-->
|
||||||
|
<complexType name="infDataType">
|
||||||
|
<sequence>
|
||||||
|
<element name="oteProperties" type="oteext:otePropertiesType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
the .ote extension domain properties
|
||||||
|
-->
|
||||||
|
<complexType name="otePropertiesType">
|
||||||
|
<sequence>
|
||||||
|
<element name="registrantName" type="eppcom:labelType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
<element name="registrantID" type="oteext:registrantIDType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<element name="eligibilityType" type="oteext:eligType"
|
||||||
|
minOccurs="1"/>
|
||||||
|
<element name="eligibilityName" type="eppcom:labelType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<element name="eligibilityID" type="oteext:eligibilityIDType"
|
||||||
|
minOccurs="0"/>
|
||||||
|
<element name="policyReason" type="oteext:policyNumType" minOccurs="0"/>
|
||||||
|
</sequence>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
the explanation type
|
||||||
|
-->
|
||||||
|
<simpleType name="explanationType">
|
||||||
|
<restriction base="normalizedString">
|
||||||
|
<maxLength value="1000"/>
|
||||||
|
</restriction>
|
||||||
|
</simpleType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
registrant id type is used for registrantID
|
||||||
|
-->
|
||||||
|
<complexType name="registrantIDType">
|
||||||
|
<simpleContent>
|
||||||
|
<extension base="eppcom:labelType">
|
||||||
|
<attribute name="type" type="oteext:registrantoteIdType"
|
||||||
|
use="required"/>
|
||||||
|
</extension>
|
||||||
|
</simpleContent>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
eligibility id type is used for eligibilityID
|
||||||
|
-->
|
||||||
|
<complexType name="eligibilityIDType">
|
||||||
|
<simpleContent>
|
||||||
|
<extension base="eppcom:labelType">
|
||||||
|
<attribute name="type" type="oteext:eligibilityoteIdType"
|
||||||
|
use="required"/>
|
||||||
|
</extension>
|
||||||
|
</simpleContent>
|
||||||
|
</complexType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
enumeration of valid registrant ID types for the .ote namespace
|
||||||
|
-->
|
||||||
|
<simpleType name="registrantoteIdType">
|
||||||
|
<restriction base="token">
|
||||||
|
<enumeration value="Trade License"/>
|
||||||
|
</restriction>
|
||||||
|
</simpleType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
enumeration of valid eligibility ID types for the .ote namespace
|
||||||
|
-->
|
||||||
|
<simpleType name="eligibilityoteIdType">
|
||||||
|
<restriction base="token">
|
||||||
|
<enumeration value="Trademark"/>
|
||||||
|
</restriction>
|
||||||
|
</simpleType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
enumeration of valid Eligibility Types for the .ote namespace
|
||||||
|
-->
|
||||||
|
<simpleType name="eligType">
|
||||||
|
<restriction base="token">
|
||||||
|
<enumeration value="Trade License"/>
|
||||||
|
<enumeration value="Freezone Trade License"/>
|
||||||
|
<enumeration value="Trademark"/>
|
||||||
|
<enumeration value="Freezone Trademark"/>
|
||||||
|
<enumeration value="Trade License (IT)"/>
|
||||||
|
<enumeration value="Freezone Trade License (IT)"/>
|
||||||
|
<enumeration value="Trademark (IT)"/>
|
||||||
|
<enumeration value="Freezone Trademark (IT)"/>
|
||||||
|
<enumeration value="Legacy"/>
|
||||||
|
<enumeration value="Legacy - Approved"/>
|
||||||
|
<enumeration value="Citizen"/>
|
||||||
|
<enumeration value="Permanent Resident"/>
|
||||||
|
<enumeration value="Sporting Organisation"/>
|
||||||
|
<enumeration value="Charitable Organisation"/>
|
||||||
|
<enumeration value="Religious Organisation"/>
|
||||||
|
<enumeration value="University"/>
|
||||||
|
<enumeration value="Technical College"/>
|
||||||
|
<enumeration value="School"/>
|
||||||
|
<enumeration value="Academy"/>
|
||||||
|
<enumeration value="Government Approved"/>
|
||||||
|
</restriction>
|
||||||
|
</simpleType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Policy reason numbers are left unassigned to a meaning to promote
|
||||||
|
flexibility of policy application. The range is also left more
|
||||||
|
open than is strictly known at the time of writing in order to
|
||||||
|
reduce the need for redistribution of an updated version of this
|
||||||
|
schema should the supported policy numbers change at some time in
|
||||||
|
the future.
|
||||||
|
-->
|
||||||
|
<simpleType name="policyNumType">
|
||||||
|
<restriction base="integer">
|
||||||
|
<minInclusive value="1"/>
|
||||||
|
<maxInclusive value="99"/>
|
||||||
|
</restriction>
|
||||||
|
</simpleType>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
End of schema.
|
||||||
|
-->
|
||||||
|
</schema>
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/AddRemType.o se/AddRemType.d: se/AddRemType.cpp se/AddRemType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AeDomainCreateCommand.o se/AeDomainCreateCommand.d: \
|
|
||||||
se/AeDomainCreateCommand.cpp se/AeDomainCreateCommand.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \
|
|
||||||
se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp xml/XMLHelper.hpp xml/XStr.hpp \
|
|
||||||
se/AeExtension.hpp common/ErrorPkg.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/AeDomainCreateCommandTest.o se/AeDomainCreateCommandTest.d: \
|
|
||||||
se/AeDomainCreateCommandTest.cpp se/ContactCheckCommand.hpp \
|
|
||||||
se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp \
|
|
||||||
se/AeDomainCreateCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/DomainCreateCommand.hpp se/CreateCommand.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/CLTRID.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/AeDomainInfoResponse.o se/AeDomainInfoResponse.d: \
|
|
||||||
se/AeDomainInfoResponse.cpp se/AeDomainInfoResponse.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AeDomainModifyRegistrantCommand.o se/AeDomainModifyRegistrantCommand.d: \
|
|
||||||
se/AeDomainModifyRegistrantCommand.cpp \
|
|
||||||
se/AeDomainModifyRegistrantCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/ObjectCommand.hpp \
|
|
||||||
se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
common/ErrorPkg.hpp se/AeExtension.hpp xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/AeDomainObjectType.o se/AeDomainObjectType.d: \
|
|
||||||
se/AeDomainObjectType.cpp se/AeDomainObjectType.hpp se/ObjectType.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/AeDomainTransferRegistrantCommand.o se/AeDomainTransferRegistrantCommand.d: \
|
|
||||||
se/AeDomainTransferRegistrantCommand.cpp \
|
|
||||||
se/AeDomainTransferRegistrantCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/AeExtension.hpp se/AeDomainObjectType.hpp \
|
|
||||||
se/ObjectType.hpp se/RegistrantTransferCommandType.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/EnumType.hpp common/ErrorPkg.hpp \
|
|
||||||
se/EPPDateFormatter.hpp xml/XMLHelper.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AeDomainTransferRegistrantResponse.o se/AeDomainTransferRegistrantResponse.d: \
|
|
||||||
se/AeDomainTransferRegistrantResponse.cpp \
|
|
||||||
se/AeDomainTransferRegistrantResponse.hpp common/Deprecated.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/AeDomainObjectType.hpp se/ObjectType.hpp \
|
|
||||||
se/RegistrantTransferCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/EPPDateFormatter.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/AeExtension.o se/AeExtension.d: se/AeExtension.cpp \
|
|
||||||
se/AeExtension.hpp se/Extension.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/ArDomainObjectType.o se/ArDomainObjectType.d: \
|
|
||||||
se/ArDomainObjectType.cpp se/ArDomainObjectType.hpp se/ObjectType.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ArDomainPolicyDeleteCommand.o se/ArDomainPolicyDeleteCommand.d: \
|
|
||||||
se/ArDomainPolicyDeleteCommand.cpp se/ArDomainPolicyDeleteCommand.hpp \
|
|
||||||
se/Extension.hpp se/ProtocolExtensionCommand.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp \
|
|
||||||
se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp xml/XStr.hpp \
|
|
||||||
se/ArExtension.hpp se/ArDomainObjectType.hpp se/ObjectType.hpp \
|
|
||||||
xml/XMLHelper.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ArDomainPolicyDeleteCommandTest.o se/ArDomainPolicyDeleteCommandTest.d: \
|
|
||||||
se/ArDomainPolicyDeleteCommandTest.cpp \
|
|
||||||
se/ArDomainPolicyDeleteCommand.hpp se/Extension.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp xml/XStr.hpp se/CLTRID.hpp common/init.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ArDomainPolicyUndeleteCommand.o se/ArDomainPolicyUndeleteCommand.d: \
|
|
||||||
se/ArDomainPolicyUndeleteCommand.cpp \
|
|
||||||
se/ArDomainPolicyUndeleteCommand.hpp se/ProtocolExtensionCommand.hpp \
|
|
||||||
se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp \
|
|
||||||
se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp \
|
|
||||||
se/Extension.hpp xml/XStr.hpp se/ArExtension.hpp \
|
|
||||||
se/ArDomainObjectType.hpp se/ObjectType.hpp xml/XMLHelper.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ArDomainPolicyUndeleteCommandTest.o se/ArDomainPolicyUndeleteCommandTest.d: \
|
|
||||||
se/ArDomainPolicyUndeleteCommandTest.cpp \
|
|
||||||
se/ArDomainPolicyUndeleteCommand.hpp se/ProtocolExtensionCommand.hpp \
|
|
||||||
se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp \
|
|
||||||
se/CommandType.hpp common/StringUtils.hpp se/ObjectType.hpp \
|
|
||||||
se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp common/init.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp
|
|
|
@ -1,8 +0,0 @@
|
||||||
build/ArDomainUndeleteCommand.o se/ArDomainUndeleteCommand.d: \
|
|
||||||
se/ArDomainUndeleteCommand.cpp se/ArDomainUndeleteCommand.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/ArExtension.hpp \
|
|
||||||
se/ArDomainObjectType.hpp se/ObjectType.hpp xml/XMLHelper.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/ArDomainUndeleteCommandTest.o se/ArDomainUndeleteCommandTest.d: \
|
|
||||||
se/ArDomainUndeleteCommandTest.cpp se/ArDomainUndeleteCommand.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/ArDomainUnrenewCommand.o se/ArDomainUnrenewCommand.d: \
|
|
||||||
se/ArDomainUnrenewCommand.cpp se/ArDomainUnrenewCommand.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/ArExtension.hpp \
|
|
||||||
se/ArDomainObjectType.hpp se/ObjectType.hpp se/EPPDateFormatter.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp xml/XMLHelper.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/ArDomainUnrenewCommandTest.o se/ArDomainUnrenewCommandTest.d: \
|
|
||||||
se/ArDomainUnrenewCommandTest.cpp se/ArDomainUnrenewCommand.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp \
|
|
||||||
se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/init.hpp \
|
|
||||||
common/Test.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/ArDomainUnrenewResponse.o se/ArDomainUnrenewResponse.d: \
|
|
||||||
se/ArDomainUnrenewResponse.cpp se/ArDomainUnrenewResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/ArDomainObjectType.hpp se/ObjectType.hpp \
|
|
||||||
se/ArUnrenewCommandType.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/EPPDateFormatter.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/ArDomainUnrenewResponseTest.o se/ArDomainUnrenewResponseTest.d: \
|
|
||||||
se/ArDomainUnrenewResponseTest.cpp se/ArDomainUnrenewResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp xml/XMLParser.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \
|
|
||||||
se/EPPDateFormatter.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/ArExtension.o se/ArExtension.d: se/ArExtension.cpp \
|
|
||||||
se/ArExtension.hpp se/Extension.hpp
|
|
|
@ -1,3 +0,0 @@
|
||||||
build/ArUnrenewCommandType.o se/ArUnrenewCommandType.d: \
|
|
||||||
se/ArUnrenewCommandType.cpp se/ArUnrenewCommandType.hpp \
|
|
||||||
se/CommandType.hpp common/StringUtils.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AuDomainCreateCommand.o se/AuDomainCreateCommand.d: \
|
|
||||||
se/AuDomainCreateCommand.cpp se/AuDomainCreateCommand.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \
|
|
||||||
se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp xml/XMLHelper.hpp xml/XStr.hpp \
|
|
||||||
se/AuExtension.hpp common/ErrorPkg.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/AuDomainCreateCommandTest.o se/AuDomainCreateCommandTest.d: \
|
|
||||||
se/AuDomainCreateCommandTest.cpp se/ContactCheckCommand.hpp \
|
|
||||||
se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp \
|
|
||||||
se/AuDomainCreateCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/DomainCreateCommand.hpp se/CreateCommand.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/CLTRID.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AuDomainCreateCommandV1.o se/AuDomainCreateCommandV1.d: \
|
|
||||||
se/AuDomainCreateCommandV1.cpp se/AuDomainCreateCommandV1.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \
|
|
||||||
se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp xml/XMLHelper.hpp xml/XStr.hpp \
|
|
||||||
se/AuExtensionV1.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/AuDomainInfoResponse.o se/AuDomainInfoResponse.d: \
|
|
||||||
se/AuDomainInfoResponse.cpp se/AuDomainInfoResponse.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/AuDomainInfoResponseTest.o se/AuDomainInfoResponseTest.d: \
|
|
||||||
se/AuDomainInfoResponseTest.cpp se/AuDomainInfoResponse.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp xml/XMLParser.hpp \
|
|
||||||
common/Test.hpp common/init.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/AuDomainInfoResponseV1.o se/AuDomainInfoResponseV1.d: \
|
|
||||||
se/AuDomainInfoResponseV1.cpp se/AuDomainInfoResponseV1.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AuDomainInfoResponsev1Test.o se/AuDomainInfoResponsev1Test.d: \
|
|
||||||
se/AuDomainInfoResponsev1Test.cpp se/AuDomainInfoResponseV1.hpp \
|
|
||||||
common/Deprecated.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp xml/XMLParser.hpp \
|
|
||||||
se/CLTRID.hpp se/EPPDateFormatter.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AuDomainModifyRegistrantCommand.o se/AuDomainModifyRegistrantCommand.d: \
|
|
||||||
se/AuDomainModifyRegistrantCommand.cpp \
|
|
||||||
se/AuDomainModifyRegistrantCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/ObjectCommand.hpp \
|
|
||||||
se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
common/ErrorPkg.hpp se/AuExtension.hpp xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/AuDomainModifyRegistrantCommandTest.o se/AuDomainModifyRegistrantCommandTest.d: \
|
|
||||||
se/AuDomainModifyRegistrantCommandTest.cpp se/ContactCheckCommand.hpp \
|
|
||||||
se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp \
|
|
||||||
se/AuDomainModifyRegistrantCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/DomainUpdateCommand.hpp se/UpdateCommand.hpp se/CLTRID.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/init.hpp \
|
|
||||||
common/Test.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/AuDomainObjectType.o se/AuDomainObjectType.d: \
|
|
||||||
se/AuDomainObjectType.cpp se/AuDomainObjectType.hpp se/ObjectType.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/AuDomainTransferRegistrantCommand.o se/AuDomainTransferRegistrantCommand.d: \
|
|
||||||
se/AuDomainTransferRegistrantCommand.cpp \
|
|
||||||
se/AuDomainTransferRegistrantCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/AuExtension.hpp se/AuDomainObjectType.hpp \
|
|
||||||
se/ObjectType.hpp se/RegistrantTransferCommandType.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/EnumType.hpp common/ErrorPkg.hpp \
|
|
||||||
se/EPPDateFormatter.hpp xml/XMLHelper.hpp
|
|
|
@ -1,12 +0,0 @@
|
||||||
build/AuDomainTransferRegistrantCommandTest.o se/AuDomainTransferRegistrantCommandTest.d: \
|
|
||||||
se/AuDomainTransferRegistrantCommandTest.cpp \
|
|
||||||
se/AuDomainTransferRegistrantCommand.hpp common/Deprecated.hpp \
|
|
||||||
se/ProtocolExtensionCommand.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/ObjectType.hpp se/Extension.hpp xml/XStr.hpp se/CLTRID.hpp \
|
|
||||||
se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AuDomainTransferRegistrantResponse.o se/AuDomainTransferRegistrantResponse.d: \
|
|
||||||
se/AuDomainTransferRegistrantResponse.cpp \
|
|
||||||
se/AuDomainTransferRegistrantResponse.hpp common/Deprecated.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/AuDomainObjectType.hpp se/ObjectType.hpp \
|
|
||||||
se/RegistrantTransferCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/EPPDateFormatter.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/AuDomainTransferRegistrantResponseTest.o se/AuDomainTransferRegistrantResponseTest.d: \
|
|
||||||
se/AuDomainTransferRegistrantResponseTest.cpp \
|
|
||||||
se/AuDomainTransferRegistrantResponse.hpp common/Deprecated.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp xml/XMLParser.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \
|
|
||||||
se/EPPDateFormatter.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/AuExtension.o se/AuExtension.d: se/AuExtension.cpp \
|
|
||||||
se/AuExtension.hpp se/Extension.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/AuExtensionV1.o se/AuExtensionV1.d: se/AuExtensionV1.cpp \
|
|
||||||
se/AuExtensionV1.hpp se/Extension.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/CLTRID.o se/CLTRID.d: se/CLTRID.cpp se/CLTRID.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/EPPException.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/CheckResponse.o se/CheckResponse.d: se/CheckResponse.cpp \
|
|
||||||
se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/ItemNotFoundException.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/CommandType.hpp common/StringUtils.hpp
|
|
|
@ -1,7 +0,0 @@
|
||||||
build/Command.o se/Command.d: se/Command.cpp se/CLTRID.hpp se/Command.hpp \
|
|
||||||
se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/IllegalArgException.hpp xml/XMLHelper.hpp xml/XStr.hpp \
|
|
||||||
xml/XMLParser.hpp common/ErrorPkg.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/ContactCheckCommandTest.o se/ContactCheckCommandTest.d: \
|
|
||||||
se/ContactCheckCommandTest.cpp se/ContactCheckCommand.hpp \
|
|
||||||
se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp se/CLTRID.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp \
|
|
||||||
common/init.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ContactCheckResponse.o se/ContactCheckResponse.d: \
|
|
||||||
se/ContactCheckResponse.cpp se/ContactCheckResponse.hpp \
|
|
||||||
se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/ContactCheckResponseTest.o se/ContactCheckResponseTest.d: \
|
|
||||||
se/ContactCheckResponseTest.cpp se/ContactCheckResponse.hpp \
|
|
||||||
se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
xml/XMLParser.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \
|
|
||||||
common/Test.hpp common/init.hpp
|
|
|
@ -1,12 +0,0 @@
|
||||||
build/ContactCreateCommand.o se/ContactCreateCommand.d: \
|
|
||||||
se/ContactCreateCommand.cpp se/ContactCreateCommand.hpp \
|
|
||||||
se/CreateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp se/IntPostalInfo.hpp \
|
|
||||||
se/PostalInfo.hpp se/PostalInfoType.hpp se/Appendable.hpp \
|
|
||||||
xml/XMLHelper.hpp xml/XStr.hpp se/LocalPostalInfo.hpp se/Disclose.hpp \
|
|
||||||
common/ErrorPkg.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ContactCreateResponse.o se/ContactCreateResponse.d: \
|
|
||||||
se/ContactCreateResponse.cpp se/ContactCreateResponse.hpp \
|
|
||||||
se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/ContactDeleteCommandTest.o se/ContactDeleteCommandTest.d: \
|
|
||||||
se/ContactDeleteCommandTest.cpp common/init.hpp common/Test.hpp \
|
|
||||||
common/EPPException.hpp se/CLTRID.hpp se/ContactDeleteCommand.hpp \
|
|
||||||
se/DeleteCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardObjectType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/StandardCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/ContactInfoCommandTest.o se/ContactInfoCommandTest.d: \
|
|
||||||
se/ContactInfoCommandTest.cpp common/init.hpp common/Test.hpp \
|
|
||||||
common/EPPException.hpp se/CLTRID.hpp se/ContactInfoCommand.hpp \
|
|
||||||
se/InfoCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
xml/XStr.hpp se/StandardObjectType.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/ContactInfoResponse.o se/ContactInfoResponse.d: \
|
|
||||||
se/ContactInfoResponse.cpp se/ContactInfoResponse.hpp \
|
|
||||||
se/InfoResponse.hpp se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp \
|
|
||||||
xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp se/IntPostalInfo.hpp \
|
|
||||||
se/PostalInfo.hpp se/PostalInfoType.hpp se/Appendable.hpp \
|
|
||||||
se/LocalPostalInfo.hpp se/DiscloseItem.hpp
|
|
|
@ -1,12 +0,0 @@
|
||||||
build/ContactInfoResponseTest.o se/ContactInfoResponseTest.d: \
|
|
||||||
se/ContactInfoResponseTest.cpp se/ContactInfoResponse.hpp \
|
|
||||||
se/InfoResponse.hpp se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp \
|
|
||||||
xml/XMLDocument.hpp common/EPPException.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \
|
|
||||||
se/IntPostalInfo.hpp se/PostalInfo.hpp se/PostalInfoType.hpp \
|
|
||||||
se/EnumType.hpp se/Appendable.hpp se/CLTRID.hpp se/EPPDateFormatter.hpp \
|
|
||||||
xml/XMLParser.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \
|
|
||||||
common/init.hpp common/Test.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ContactNotificationResponse.o se/ContactNotificationResponse.d: \
|
|
||||||
se/ContactNotificationResponse.cpp se/ContactNotificationResponse.hpp \
|
|
||||||
se/NotificationResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/ContactTransferRequestCommandTest.o se/ContactTransferRequestCommandTest.d: \
|
|
||||||
se/ContactTransferRequestCommandTest.cpp \
|
|
||||||
se/ContactTransferRequestCommand.hpp se/ContactTransferCommand.hpp \
|
|
||||||
se/TransferCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/EnumType.hpp se/IllegalArgException.hpp \
|
|
||||||
se/TransferOp.hpp se/StandardObjectType.hpp se/CLTRID.hpp \
|
|
||||||
se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp xml/XMLParser.hpp common/init.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/ContactTransferResponse.o se/ContactTransferResponse.d: \
|
|
||||||
se/ContactTransferResponse.cpp se/ContactTransferResponse.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp se/IllegalArgException.hpp \
|
|
||||||
common/EPPException.hpp se/ObjectType.hpp se/TransferResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
common/StringUtils.hpp
|
|
|
@ -1,12 +0,0 @@
|
||||||
build/ContactUpdateCommand.o se/ContactUpdateCommand.d: \
|
|
||||||
se/ContactUpdateCommand.cpp se/ContactUpdateCommand.hpp \
|
|
||||||
se/UpdateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp xml/XMLHelper.hpp \
|
|
||||||
xml/XStr.hpp se/Status.hpp se/IntPostalInfo.hpp se/PostalInfo.hpp \
|
|
||||||
se/PostalInfoType.hpp se/Appendable.hpp se/LocalPostalInfo.hpp \
|
|
||||||
se/Disclose.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/CreateResponse.o se/CreateResponse.d: se/CreateResponse.cpp \
|
|
||||||
se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardCommandType.hpp se/EnumType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/EPPDateFormatter.hpp
|
|
|
@ -1,7 +0,0 @@
|
||||||
build/DataResponse.o se/DataResponse.d: se/DataResponse.cpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/CommandType.hpp common/StringUtils.hpp
|
|
|
@ -1,4 +0,0 @@
|
||||||
build/Disclose.o se/Disclose.d: se/Disclose.cpp se/Disclose.hpp \
|
|
||||||
se/Appendable.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp
|
|
|
@ -1,6 +0,0 @@
|
||||||
build/DomainAddRem.o se/DomainAddRem.d: se/DomainAddRem.cpp \
|
|
||||||
se/DomainAddRem.hpp se/Appendable.hpp se/Status.hpp \
|
|
||||||
common/StringUtils.hpp se/AddRemType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp common/EPPException.hpp xml/XMLHelper.hpp \
|
|
||||||
xml/XStr.hpp xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainCheckCommandTest.o se/DomainCheckCommandTest.d: \
|
|
||||||
se/DomainCheckCommandTest.cpp common/init.hpp common/Test.hpp \
|
|
||||||
common/EPPException.hpp se/CLTRID.hpp se/DomainCheckCommand.hpp \
|
|
||||||
se/CheckCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/DomainCheckResponse.o se/DomainCheckResponse.d: \
|
|
||||||
se/DomainCheckResponse.cpp se/DomainCheckResponse.hpp \
|
|
||||||
se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
common/StringUtils.hpp se/StandardObjectType.hpp se/EnumType.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/DomainCheckResponseTest.o se/DomainCheckResponseTest.d: \
|
|
||||||
se/DomainCheckResponseTest.cpp se/DomainCheckResponse.hpp \
|
|
||||||
se/CheckResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
xml/XMLParser.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/DomainCreateCommand.o se/DomainCreateCommand.d: \
|
|
||||||
se/DomainCreateCommand.cpp se/DomainCreateCommand.hpp \
|
|
||||||
se/CreateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/Period.hpp se/PeriodUnit.hpp \
|
|
||||||
se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/DomainCreateResponse.o se/DomainCreateResponse.d: \
|
|
||||||
se/DomainCreateResponse.cpp se/DomainCreateResponse.hpp \
|
|
||||||
se/CreateResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp se/EPPDateFormatter.hpp \
|
|
||||||
common/StringUtils.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainDeleteCommandTest.o se/DomainDeleteCommandTest.d: \
|
|
||||||
se/DomainDeleteCommandTest.cpp common/init.hpp common/Test.hpp \
|
|
||||||
common/EPPException.hpp se/CLTRID.hpp se/DomainDeleteCommand.hpp \
|
|
||||||
se/DeleteCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardObjectType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/StandardCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainInfoCommandTest.o se/DomainInfoCommandTest.d: \
|
|
||||||
se/DomainInfoCommandTest.cpp common/init.hpp common/Test.hpp \
|
|
||||||
common/EPPException.hpp se/CLTRID.hpp se/DomainInfoCommand.hpp \
|
|
||||||
se/InfoCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
xml/XStr.hpp se/StandardObjectType.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp
|
|
|
@ -1,8 +0,0 @@
|
||||||
build/DomainInfoKVResponseExtension.o se/DomainInfoKVResponseExtension.d: \
|
|
||||||
se/DomainInfoKVResponseExtension.cpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp se/Response.hpp se/ReceiveSE.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ResponseExtension.hpp \
|
|
||||||
se/DomainInfoKVResponseExtension.hpp se/KVDefs.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/DomainInfoKVResponseExtensionTest.o se/DomainInfoKVResponseExtensionTest.d: \
|
|
||||||
se/DomainInfoKVResponseExtensionTest.cpp xml/XMLParser.hpp \
|
|
||||||
xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \
|
|
||||||
common/Test.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \
|
|
||||||
se/DomainKVCommandExtension.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/KVDefs.hpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp se/ObjectType.hpp se/Status.hpp \
|
|
||||||
se/DomainInfoKVResponseExtension.hpp se/ResponseExtension.hpp \
|
|
||||||
se/CLTRID.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/DomainInfoResponse.o se/DomainInfoResponse.d: \
|
|
||||||
se/DomainInfoResponse.cpp se/DomainInfoResponse.hpp se/InfoResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/Status.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp se/EPPDateFormatter.hpp
|
|
|
@ -1,8 +0,0 @@
|
||||||
build/DomainKVCommandExtension.o se/DomainKVCommandExtension.d: \
|
|
||||||
se/DomainKVCommandExtension.cpp se/DomainKVCommandExtension.hpp \
|
|
||||||
xml/XMLWriter.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/KVDefs.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/KVExtension.hpp \
|
|
||||||
xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,13 +0,0 @@
|
||||||
build/DomainKVCommandExtensionTest.o se/DomainKVCommandExtensionTest.d: \
|
|
||||||
se/DomainKVCommandExtensionTest.cpp xml/XMLParser.hpp \
|
|
||||||
xml/ParsingException.hpp common/EPPException.hpp common/init.hpp \
|
|
||||||
common/Test.hpp session/Timer.hpp common/ParameterSyntaxException.hpp \
|
|
||||||
se/DomainKVCommandExtension.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/CommandExtension.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/KVDefs.hpp se/DomainCreateCommand.hpp se/CreateCommand.hpp \
|
|
||||||
se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp \
|
|
||||||
se/Extension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/DomainUpdateCommand.hpp se/UpdateCommand.hpp \
|
|
||||||
se/CLTRID.hpp
|
|
|
@ -1,9 +0,0 @@
|
||||||
build/DomainNotificationResponse.o se/DomainNotificationResponse.d: \
|
|
||||||
se/DomainNotificationResponse.cpp se/DomainNotificationResponse.hpp \
|
|
||||||
se/NotificationResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp common/StringUtils.hpp
|
|
|
@ -1,12 +0,0 @@
|
||||||
build/DomainRegistrantTransferCommand.o se/DomainRegistrantTransferCommand.d: \
|
|
||||||
se/DomainRegistrantTransferCommand.cpp se/Period.hpp se/PeriodUnit.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp common/EPPException.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/DomainRegistrantTransferCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/KVDefs.hpp se/StandardCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/RegistrantTransferCommandType.hpp \
|
|
||||||
se/EPPDateFormatter.hpp se/KVExtension.hpp se/RegistrantObjectType.hpp \
|
|
||||||
se/ObjectType.hpp se/CLTRID.hpp xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainRegistrantTransferCommandTest.o se/DomainRegistrantTransferCommandTest.d: \
|
|
||||||
se/DomainRegistrantTransferCommandTest.cpp \
|
|
||||||
se/DomainRegistrantTransferCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/KVDefs.hpp se/CLTRID.hpp \
|
|
||||||
se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/init.hpp common/Test.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainRegistrantTransferResponse.o se/DomainRegistrantTransferResponse.d: \
|
|
||||||
se/DomainRegistrantTransferResponse.cpp \
|
|
||||||
se/DomainRegistrantTransferResponse.hpp se/DataResponse.hpp \
|
|
||||||
se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/RegistrantObjectType.hpp se/ObjectType.hpp \
|
|
||||||
se/RegistrantTransferCommandType.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/EPPDateFormatter.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainRegistrantTransferResponseTest.o se/DomainRegistrantTransferResponseTest.d: \
|
|
||||||
se/DomainRegistrantTransferResponseTest.cpp \
|
|
||||||
se/DomainRegistrantTransferResponse.hpp se/DataResponse.hpp \
|
|
||||||
se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp xml/XMLParser.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp common/Test.hpp common/init.hpp \
|
|
||||||
se/EPPDateFormatter.hpp
|
|
|
@ -1,12 +0,0 @@
|
||||||
build/DomainRenewCommand.o se/DomainRenewCommand.d: \
|
|
||||||
se/DomainRenewCommand.cpp se/DomainRenewCommand.hpp se/ObjectCommand.hpp \
|
|
||||||
se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp se/EnumType.hpp \
|
|
||||||
se/StandardCommandType.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp \
|
|
||||||
se/EPPDateFormatter.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/DomainRenewResponse.o se/DomainRenewResponse.d: \
|
|
||||||
se/DomainRenewResponse.cpp se/DomainRenewResponse.hpp \
|
|
||||||
se/DataResponse.hpp se/Response.hpp se/ReceiveSE.hpp xml/XMLDocument.hpp \
|
|
||||||
common/EPPException.hpp common/Logger.hpp common/Properties.hpp \
|
|
||||||
config/config.h common/ConfigurationError.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/Result.hpp xml/ParsingException.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/CommandType.hpp common/StringUtils.hpp se/StandardObjectType.hpp \
|
|
||||||
se/EPPDateFormatter.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainTransferQueryCommandTest.o se/DomainTransferQueryCommandTest.d: \
|
|
||||||
se/DomainTransferQueryCommandTest.cpp common/init.hpp common/Test.hpp \
|
|
||||||
common/EPPException.hpp se/CLTRID.hpp se/DomainTransferQueryCommand.hpp \
|
|
||||||
se/DomainTransferCommand.hpp se/TransferCommand.hpp se/ObjectCommand.hpp \
|
|
||||||
se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/Period.hpp \
|
|
||||||
se/PeriodUnit.hpp se/EnumType.hpp se/IllegalArgException.hpp \
|
|
||||||
se/TransferOp.hpp se/StandardObjectType.hpp session/Timer.hpp \
|
|
||||||
common/ParameterSyntaxException.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/DomainTransferResponse.o se/DomainTransferResponse.d: \
|
|
||||||
se/DomainTransferResponse.cpp se/DomainTransferResponse.hpp \
|
|
||||||
se/TransferResponse.hpp se/DataResponse.hpp se/Response.hpp \
|
|
||||||
se/ReceiveSE.hpp xml/XMLDocument.hpp common/EPPException.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/ConfigurationError.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/IllegalArgException.hpp \
|
|
||||||
se/Result.hpp xml/ParsingException.hpp se/ObjectType.hpp \
|
|
||||||
se/StandardObjectType.hpp se/EnumType.hpp se/EPPDateFormatter.hpp \
|
|
||||||
common/StringUtils.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/DomainUpdateCommand.o se/DomainUpdateCommand.d: \
|
|
||||||
se/DomainUpdateCommand.cpp se/DomainUpdateCommand.hpp \
|
|
||||||
se/UpdateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/DomainAdd.hpp se/DomainAddRem.hpp \
|
|
||||||
se/Appendable.hpp se/Status.hpp se/AddRemType.hpp se/DomainRem.hpp \
|
|
||||||
se/StandardObjectType.hpp xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,14 +0,0 @@
|
||||||
build/DomainUpdateCommandTest.o se/DomainUpdateCommandTest.d: \
|
|
||||||
se/DomainUpdateCommandTest.cpp se/DomainUpdateCommand.hpp \
|
|
||||||
se/UpdateCommand.hpp se/ObjectCommand.hpp se/Command.hpp se/SendSE.hpp \
|
|
||||||
xml/EPPWriter.hpp xml/XMLWriter.hpp common/Logger.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp xml/ParsingException.hpp se/Extension.hpp \
|
|
||||||
se/CommandExtension.hpp se/ObjectType.hpp se/StandardCommandType.hpp \
|
|
||||||
se/EnumType.hpp se/IllegalArgException.hpp se/CommandType.hpp \
|
|
||||||
common/StringUtils.hpp se/DomainUpdateSyncCommandExtension.hpp \
|
|
||||||
common/ErrorPkg.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp se/EPPDateFormatter.hpp se/CLTRID.hpp \
|
|
||||||
se/DomainAdd.hpp se/DomainAddRem.hpp se/Appendable.hpp se/Status.hpp \
|
|
||||||
se/AddRemType.hpp se/DomainRem.hpp xml/XMLParser.hpp common/init.hpp \
|
|
||||||
session/Timer.hpp common/ParameterSyntaxException.hpp common/Test.hpp
|
|
|
@ -1,10 +0,0 @@
|
||||||
build/DomainUpdateSyncCommandExtension.o se/DomainUpdateSyncCommandExtension.d: \
|
|
||||||
se/DomainUpdateSyncCommandExtension.cpp \
|
|
||||||
se/DomainUpdateSyncCommandExtension.hpp common/ErrorPkg.hpp \
|
|
||||||
common/Properties.hpp config/config.h common/EPPException.hpp \
|
|
||||||
common/ConfigurationError.hpp common/Logger.hpp se/Command.hpp \
|
|
||||||
se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
se/IllegalArgException.hpp se/EPPDateFormatter.hpp se/SyncExtension.hpp \
|
|
||||||
xml/XMLHelper.hpp xml/XStr.hpp
|
|
|
@ -1,2 +0,0 @@
|
||||||
build/E164Extension.o se/E164Extension.d: se/E164Extension.cpp \
|
|
||||||
se/E164Extension.hpp se/Extension.hpp
|
|
|
@ -1,4 +0,0 @@
|
||||||
build/EPPDateFormatter.o se/EPPDateFormatter.d: se/EPPDateFormatter.cpp \
|
|
||||||
se/EPPDateFormatter.hpp se/XMLGregorianCalendar.hpp \
|
|
||||||
common/IllegalStateException.hpp common/EPPException.hpp \
|
|
||||||
se/IllegalArgException.hpp
|
|
|
@ -1,4 +0,0 @@
|
||||||
build/EPPDateFormatterTest.o se/EPPDateFormatterTest.d: \
|
|
||||||
se/EPPDateFormatterTest.cpp se/EPPDateFormatter.hpp \
|
|
||||||
se/XMLGregorianCalendar.hpp common/IllegalStateException.hpp \
|
|
||||||
common/EPPException.hpp se/IllegalArgException.hpp common/Test.hpp
|
|
|
@ -1,11 +0,0 @@
|
||||||
build/EnumDomainCreateCommand.o se/EnumDomainCreateCommand.d: \
|
|
||||||
se/EnumDomainCreateCommand.cpp se/EnumDomainCreateCommand.hpp \
|
|
||||||
se/DomainCreateCommand.hpp se/CreateCommand.hpp se/ObjectCommand.hpp \
|
|
||||||
se/Command.hpp se/SendSE.hpp xml/EPPWriter.hpp xml/XMLWriter.hpp \
|
|
||||||
common/Logger.hpp common/Properties.hpp config/config.h \
|
|
||||||
common/EPPException.hpp common/ConfigurationError.hpp \
|
|
||||||
xml/ParsingException.hpp se/Extension.hpp se/CommandExtension.hpp \
|
|
||||||
se/ObjectType.hpp se/StandardCommandType.hpp se/EnumType.hpp \
|
|
||||||
se/IllegalArgException.hpp se/CommandType.hpp common/StringUtils.hpp \
|
|
||||||
se/Period.hpp se/PeriodUnit.hpp se/NAPTR.hpp se/Appendable.hpp \
|
|
||||||
se/E164Extension.hpp
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue