Drastically reduce BungeeRotator size (3MB!!!)
This commit is contained in:
parent
251eb2e53e
commit
a4614fe3b4
@ -20,8 +20,9 @@
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-bundle</artifactId>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.5.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
@ -1,48 +0,0 @@
|
||||
package biz.neustar.ultra.client;
|
||||
|
||||
import org.apache.ws.security.WSPasswordCallback;
|
||||
|
||||
import javax.security.auth.callback.Callback;
|
||||
import javax.security.auth.callback.CallbackHandler;
|
||||
import javax.security.auth.callback.UnsupportedCallbackException;
|
||||
import java.io.IOException;
|
||||
|
||||
/*
|
||||
* User: jbodner
|
||||
* Date: 1/28/13
|
||||
* Time: 12:32 PM
|
||||
*
|
||||
* Copyright 2000-2013 NeuStar, Inc. All rights reserved.
|
||||
* NeuStar, the Neustar logo and related names and logos are registered
|
||||
* trademarks, service marks or tradenames of NeuStar, Inc. All other
|
||||
* product names, company names, marks, logos and symbols may be trademarks
|
||||
* of their respective owners.
|
||||
*/
|
||||
public class ClientPasswordCallback implements CallbackHandler {
|
||||
private final String _username;
|
||||
private final String _password;
|
||||
|
||||
public ClientPasswordCallback(String username, String password) {
|
||||
_username = username;
|
||||
_password = password;
|
||||
}
|
||||
|
||||
public void handle(Callback[] callbacks) throws IOException,
|
||||
UnsupportedCallbackException {
|
||||
|
||||
for (Callback callback : callbacks) {
|
||||
|
||||
WSPasswordCallback pc = (WSPasswordCallback) callback;
|
||||
|
||||
if (pc.getUsage() == WSPasswordCallback.USERNAME_TOKEN) {
|
||||
|
||||
//you can source the username and password from
|
||||
//other sources like login context, LDAP, DB etc
|
||||
|
||||
pc.setIdentifier(_username);
|
||||
pc.setPassword(_password);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
package biz.neustar.ultra.client;
|
||||
|
||||
import java.util.EnumSet;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
|
||||
/*
|
||||
* User: jbodner
|
||||
* Date: 1/28/13
|
||||
* Time: 12:32 PM
|
||||
*
|
||||
* Copyright 2000-2013 NeuStar, Inc. All rights reserved.
|
||||
* NeuStar, the Neustar logo and related names and logos are registered
|
||||
* trademarks, service marks or tradenames of NeuStar, Inc. All other
|
||||
* product names, company names, marks, logos and symbols may be trademarks
|
||||
* of their respective owners.
|
||||
*/
|
||||
public enum ResourceRecordTypes {
|
||||
|
||||
ALL_TYPES(0),
|
||||
A(1),
|
||||
NS(2),
|
||||
MD(3),
|
||||
MF(4),
|
||||
CNAME(5),
|
||||
SOA(6),
|
||||
MB(7),
|
||||
MG(8),
|
||||
MR(9),
|
||||
NULL(10),
|
||||
WKS(11),
|
||||
PTR(12),
|
||||
HINFO(13),
|
||||
MINFO(14),
|
||||
MX(15),
|
||||
TXT(16),
|
||||
RP(17),
|
||||
AFSDB(18),
|
||||
X25(19),
|
||||
ISDN(20),
|
||||
RT(21),
|
||||
NSAP(22),
|
||||
NSAP_PTR(23),
|
||||
SIG (24),
|
||||
KEY (25),
|
||||
PX (26),
|
||||
CPOS( 27),
|
||||
AAAA ( 28),
|
||||
LOC(29),
|
||||
NXT(30),
|
||||
EID( 31),
|
||||
NIMLOC( 32),
|
||||
SRV (33),
|
||||
NAPTR(35),
|
||||
DS (43),
|
||||
SSHFP (44),
|
||||
RRSIG (46),
|
||||
NSEC (47),
|
||||
DNSKEY (48),
|
||||
NSEC3 (50),
|
||||
NSEC3PARAM (51),
|
||||
SPF(99),
|
||||
UINFO(100),
|
||||
UID (101),
|
||||
GID (102),
|
||||
AXFR ( 252),
|
||||
MAILA (253),
|
||||
MAILB (254),
|
||||
ANY (255),
|
||||
NORESPONSE (902),
|
||||
DLV (32769),
|
||||
SB (65280);
|
||||
|
||||
private static final Map<Integer,ResourceRecordTypes> lookup = new HashMap<Integer,ResourceRecordTypes>();
|
||||
private static final Map<ResourceRecordTypes, Integer> reverseLookup = new HashMap<ResourceRecordTypes,Integer>();
|
||||
|
||||
static {
|
||||
for(ResourceRecordTypes r : EnumSet.allOf(ResourceRecordTypes.class)){
|
||||
lookup.put(r.recType(), r);
|
||||
reverseLookup.put(r, r.recType());
|
||||
}
|
||||
}
|
||||
|
||||
private int recType;
|
||||
|
||||
/**
|
||||
* @param code
|
||||
* @param message
|
||||
*/
|
||||
ResourceRecordTypes(int code) {
|
||||
this.recType = code;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return code
|
||||
*/
|
||||
public int recType() {
|
||||
return recType;
|
||||
}
|
||||
|
||||
public static ResourceRecordTypes get(int code) {
|
||||
return lookup.get(code);
|
||||
}
|
||||
|
||||
public static Integer get(ResourceRecordTypes rec){
|
||||
return reverseLookup.get(rec);
|
||||
}
|
||||
|
||||
public boolean equals(int code){
|
||||
return this.equals(lookup.get(code));
|
||||
}
|
||||
}
|
@ -1,65 +0,0 @@
|
||||
package biz.neustar.ultra.client;
|
||||
|
||||
import com.neustar.ultraservice.schema.v01.AccountDetailsList;
|
||||
import org.apache.commons.lang.RandomStringUtils;
|
||||
|
||||
/*
|
||||
* User: jbodner
|
||||
* Date: 1/30/13
|
||||
* Time: 2:39 PM
|
||||
*
|
||||
* Copyright 2000-2013 NeuStar, Inc. All rights reserved.
|
||||
* NeuStar, the Neustar logo and related names and logos are registered
|
||||
* trademarks, service marks or tradenames of NeuStar, Inc. All other
|
||||
* product names, company names, marks, logos and symbols may be trademarks
|
||||
* of their respective owners.
|
||||
*/
|
||||
public class SampleMain {
|
||||
/*
|
||||
arg pos value
|
||||
0 wsdl url
|
||||
1 username
|
||||
2 password
|
||||
3 account id
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
|
||||
if (args.length < 3 || args.length > 4) {
|
||||
System.err.println("Required params: wsdlUrl userName password {accountId}");
|
||||
System.exit(1);
|
||||
}
|
||||
String wsdlUrl = args[0];
|
||||
String username = args[1];
|
||||
String password = args[2];
|
||||
String accountId = null;
|
||||
if(args.length == 4) {
|
||||
accountId = args[3];
|
||||
}
|
||||
|
||||
System.out.println("url = " + wsdlUrl);
|
||||
try {
|
||||
UltraAPIClient ultraAPIClient = new UltraAPIClientImpl(username, password, wsdlUrl);
|
||||
System.out.println(ultraAPIClient.getNeustarNetworkStatus());
|
||||
AccountDetailsList accountDetailsForUser = ultraAPIClient.getAccountDetailsForUser();
|
||||
System.out.println(accountDetailsForUser.getAccountDetailsData().get(0).getAccountID());
|
||||
if (accountId == null) {
|
||||
accountId = accountDetailsForUser.getAccountDetailsData().get(0).getAccountID();
|
||||
}
|
||||
String zoneName = RandomStringUtils.randomAlphanumeric(16).toLowerCase()+".com.";
|
||||
try {
|
||||
System.out.println(ultraAPIClient.deleteZone(zoneName));
|
||||
} catch (UltraAPIException e) {
|
||||
e.printStackTrace();
|
||||
if (e.getCode() != 1801) {
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
System.out.println(ultraAPIClient.createPrimaryZone(accountId, zoneName));
|
||||
System.out.println(ultraAPIClient.getSecondaryZonesOfAccount(accountId));
|
||||
System.out.println(ultraAPIClient.createARecord(zoneName, "foo."+zoneName, "1.2.3.4", 86400));
|
||||
System.out.println(ultraAPIClient.deleteZone(zoneName));
|
||||
} catch (UltraAPIException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
package biz.neustar.ultra.client;
|
||||
|
||||
/*
|
||||
* User: jbodner
|
||||
* Date: 1/28/13
|
||||
* Time: 4:07 PM
|
||||
*
|
||||
* Copyright 2000-2013 NeuStar, Inc. All rights reserved.
|
||||
* NeuStar, the Neustar logo and related names and logos are registered
|
||||
* trademarks, service marks or tradenames of NeuStar, Inc. All other
|
||||
* product names, company names, marks, logos and symbols may be trademarks
|
||||
* of their respective owners.
|
||||
*/
|
||||
|
||||
import com.neustar.ultraservice.schema.v01.AccountDetailsList;
|
||||
import com.neustar.ultraservice.schema.v01.ZoneList;
|
||||
|
||||
public interface UltraAPIClient {
|
||||
String createARecord(String zoneName, String domainName, String ipAddress, int ttl);
|
||||
|
||||
String createTXTRecord(String zoneName, String domainName, String value, int ttl);
|
||||
|
||||
String createCNAMERecord(String zoneName, String domainName, String name, int ttl);
|
||||
|
||||
String createRecord(String zoneName, String domainName, ResourceRecordTypes recordType, int ttl, String... infoValues);
|
||||
|
||||
String createPrimaryZone(String accountId, String zoneName);
|
||||
|
||||
String deleteZone(String zoneName);
|
||||
|
||||
AccountDetailsList getAccountDetailsForUser();
|
||||
|
||||
String getNeustarNetworkStatus();
|
||||
|
||||
ZoneList getSecondaryZonesOfAccount(String accountId);
|
||||
|
||||
ZoneList getPrimaryZonesOfAccount(String accountId);
|
||||
|
||||
ZoneList getAliasZonesOfAccount(String accountId);
|
||||
|
||||
ZoneList getZonesOfAccount(String accountId);
|
||||
}
|
@ -1,164 +0,0 @@
|
||||
package biz.neustar.ultra.client;
|
||||
|
||||
import com.neustar.ultra.api.webservice.v01.UltraDNS1;
|
||||
import com.neustar.ultra.api.webservice.v01.UltraWSException_Exception;
|
||||
import com.neustar.ultra.api.webservice.v01.UltraWebServiceV01Service;
|
||||
import com.neustar.ultraservice.schema.v01.*;
|
||||
import org.apache.cxf.endpoint.Client;
|
||||
import org.apache.cxf.frontend.ClientProxy;
|
||||
import org.apache.cxf.ws.security.wss4j.WSS4JOutInterceptor;
|
||||
import org.apache.ws.security.handler.WSHandlerConstants;
|
||||
|
||||
import javax.xml.ws.Service;
|
||||
import java.lang.reflect.Method;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
/*
|
||||
* User: jbodner
|
||||
* Date: 1/28/13
|
||||
* Time: 12:32 PM
|
||||
*
|
||||
* Copyright 2000-2013 NeuStar, Inc. All rights reserved.
|
||||
* NeuStar, the Neustar logo and related names and logos are registered
|
||||
* trademarks, service marks or tradenames of NeuStar, Inc. All other
|
||||
* product names, company names, marks, logos and symbols may be trademarks
|
||||
* of their respective owners.
|
||||
*/
|
||||
public class UltraAPIClientImpl implements UltraAPIClient {
|
||||
private final UltraDNS1 _ultraDNS1;
|
||||
|
||||
public UltraAPIClientImpl(String username, String password) {
|
||||
this(username, password, UltraWebServiceV01Service.WSDL_LOCATION.toString());
|
||||
}
|
||||
|
||||
public UltraAPIClientImpl(String username, String password, String url) {
|
||||
try {
|
||||
Service service = UltraWebServiceV01Service.create(new URL(url), UltraWebServiceV01Service.SERVICE);
|
||||
_ultraDNS1 = service.getPort(UltraDNS1.class);
|
||||
Client cxfClient = ClientProxy.getClient(_ultraDNS1);
|
||||
WSS4JOutInterceptor wss4JOutInterceptor = new WSS4JOutInterceptor();
|
||||
Map<String, Object> properties = new HashMap<String, Object>();
|
||||
properties.put(WSHandlerConstants.ACTION, "UsernameToken");
|
||||
properties.put(WSHandlerConstants.USER, "dummy");
|
||||
properties.put(WSHandlerConstants.PASSWORD_TYPE, "PasswordText");
|
||||
properties.put(WSHandlerConstants.PW_CALLBACK_REF, new ClientPasswordCallback(username, password));
|
||||
wss4JOutInterceptor.setProperties(properties);
|
||||
|
||||
cxfClient.getOutInterceptors().add(new org.apache.cxf.interceptor.LoggingOutInterceptor());
|
||||
cxfClient.getOutInterceptors().add(wss4JOutInterceptor);
|
||||
} catch (MalformedURLException e) {
|
||||
e.printStackTrace();
|
||||
throw new UltraAPIException(9999, e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String createARecord(String zoneName, String domainName, String ipAddress, int ttl) {
|
||||
return createRecord(zoneName, domainName, ResourceRecordTypes.A, ttl, ipAddress);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String createTXTRecord(String zoneName, String domainName, String value, int ttl) {
|
||||
return createRecord(zoneName, domainName, ResourceRecordTypes.TXT, ttl, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String createCNAMERecord(String zoneName, String domainName, String name, int ttl) {
|
||||
return createRecord(zoneName, domainName, ResourceRecordTypes.CNAME, ttl, name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String createRecord(String zoneName, String domainName, ResourceRecordTypes recordType, int ttl, String... infoValues) {
|
||||
try {
|
||||
ResourceRecordToCreate resourceRecord = new ResourceRecordToCreate();
|
||||
resourceRecord.setDName(domainName);
|
||||
resourceRecord.setType(recordType.recType());
|
||||
resourceRecord.setZoneName(zoneName);
|
||||
resourceRecord.setTTL(Integer.toString(ttl));
|
||||
InfoValues infoValuesWrapper = new InfoValues();
|
||||
for (int i = 0; i < infoValues.length; i++) {
|
||||
setInfoValue(i, infoValues[i], infoValuesWrapper);
|
||||
}
|
||||
resourceRecord.setInfoValues(infoValuesWrapper);
|
||||
return _ultraDNS1.createResourceRecord("", resourceRecord);
|
||||
} catch (UltraWSException_Exception e) {
|
||||
throw new UltraAPIException(e.getFaultInfo());
|
||||
}
|
||||
}
|
||||
|
||||
private void setInfoValue(int i, String value, InfoValues infoValuesWrapper) {
|
||||
try {
|
||||
Method m = infoValuesWrapper.getClass().getMethod("setInfo"+(i+1)+"Value", String.class);
|
||||
m.invoke(infoValuesWrapper,value);
|
||||
} catch (Exception e) {
|
||||
throw new UltraAPIException(9999, e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String createPrimaryZone(String accountId, String zoneName) {
|
||||
try {
|
||||
return _ultraDNS1.createPrimaryZone("", accountId, zoneName, true);
|
||||
} catch (UltraWSException_Exception e) {
|
||||
throw new UltraAPIException(e.getFaultInfo());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String deleteZone(String zoneName) {
|
||||
try {
|
||||
return _ultraDNS1.deleteZone("", zoneName);
|
||||
} catch (UltraWSException_Exception e) {
|
||||
throw new UltraAPIException(e.getFaultInfo());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccountDetailsList getAccountDetailsForUser() {
|
||||
try {
|
||||
return _ultraDNS1.getAccountDetailsOfUser("", "");
|
||||
} catch (UltraWSException_Exception e) {
|
||||
throw new UltraAPIException(e.getFaultInfo());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getNeustarNetworkStatus() {
|
||||
try {
|
||||
return _ultraDNS1.getNeustarNetworkStatus();
|
||||
} catch (UltraWSException_Exception e) {
|
||||
throw new UltraAPIException(e.getFaultInfo());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZoneList getSecondaryZonesOfAccount(String accountId) {
|
||||
return getZonesOfAccount(accountId, ZoneType.SECONDARY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZoneList getPrimaryZonesOfAccount(String accountId) {
|
||||
return getZonesOfAccount(accountId, ZoneType.PRIMARY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZoneList getAliasZonesOfAccount(String accountId) {
|
||||
return getZonesOfAccount(accountId, ZoneType.ALIAS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZoneList getZonesOfAccount(String accountId) {
|
||||
return getZonesOfAccount(accountId, ZoneType.ALL);
|
||||
}
|
||||
|
||||
private ZoneList getZonesOfAccount(String accountId, ZoneType zoneType) {
|
||||
try {
|
||||
return _ultraDNS1.getZonesOfAccount(accountId, zoneType);
|
||||
} catch (UltraWSException_Exception e) {
|
||||
throw new UltraAPIException(e.getFaultInfo());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
package biz.neustar.ultra.client;
|
||||
|
||||
import com.neustar.ultra.api.webservice.v01.UltraWSException;
|
||||
|
||||
/*
|
||||
* User: jbodner
|
||||
* Date: 1/28/13
|
||||
* Time: 1:11 PM
|
||||
*
|
||||
* Copyright 2000-2013 NeuStar, Inc. All rights reserved.
|
||||
* NeuStar, the Neustar logo and related names and logos are registered
|
||||
* trademarks, service marks or tradenames of NeuStar, Inc. All other
|
||||
* product names, company names, marks, logos and symbols may be trademarks
|
||||
* of their respective owners.
|
||||
*/
|
||||
public class UltraAPIException extends RuntimeException {
|
||||
private final int _code;
|
||||
|
||||
public UltraAPIException(int code, String message) {
|
||||
super(message);
|
||||
_code = code;
|
||||
}
|
||||
|
||||
public UltraAPIException(UltraWSException e) {
|
||||
super(e.getErrorDescription());
|
||||
_code = e.getErrorCode();
|
||||
}
|
||||
|
||||
public int getCode() {
|
||||
return _code;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return String.format("%d - %s", _code, getMessage());
|
||||
}
|
||||
}
|
@ -1,58 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for action.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="action">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="ADD"/>
|
||||
* <enumeration value="MODIFY"/>
|
||||
* <enumeration value="DELETE"/>
|
||||
* <enumeration value="BULK_ADD"/>
|
||||
* <enumeration value="BULK_MODIFY"/>
|
||||
* <enumeration value="BULK_DELETE"/>
|
||||
* <enumeration value="LOGIN"/>
|
||||
* <enumeration value="SIGN"/>
|
||||
* <enumeration value="UNSIGN"/>
|
||||
* <enumeration value="FAILOVER"/>
|
||||
* <enumeration value="FAILBACK"/>
|
||||
* <enumeration value="MIGRATE_SBTC_TO_AR"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "action")
|
||||
@XmlEnum
|
||||
public enum Action {
|
||||
|
||||
ADD,
|
||||
MODIFY,
|
||||
DELETE,
|
||||
BULK_ADD,
|
||||
BULK_MODIFY,
|
||||
BULK_DELETE,
|
||||
LOGIN,
|
||||
SIGN,
|
||||
UNSIGN,
|
||||
FAILOVER,
|
||||
FAILBACK,
|
||||
MIGRATE_SBTC_TO_AR;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static Action fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for aliasZoneInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="aliasZoneInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="originalZoneName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "aliasZoneInfo", propOrder = {
|
||||
"originalZoneName"
|
||||
})
|
||||
public class AliasZoneInfo {
|
||||
|
||||
protected String originalZoneName;
|
||||
|
||||
/**
|
||||
* Gets the value of the originalZoneName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOriginalZoneName() {
|
||||
return originalZoneName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the originalZoneName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOriginalZoneName(String value) {
|
||||
this.originalZoneName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for applicationID.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="applicationID">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="JAVA_UI"/>
|
||||
* <enumeration value="SOAP_API"/>
|
||||
* <enumeration value="MASQ_UI"/>
|
||||
* <enumeration value="UA"/>
|
||||
* <enumeration value="PHP_UI"/>
|
||||
* <enumeration value="XML_API"/>
|
||||
* <enumeration value="RPS_TIMER"/>
|
||||
* <enumeration value="SMADS"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "applicationID")
|
||||
@XmlEnum
|
||||
public enum ApplicationID {
|
||||
|
||||
JAVA_UI,
|
||||
SOAP_API,
|
||||
MASQ_UI,
|
||||
UA,
|
||||
PHP_UI,
|
||||
XML_API,
|
||||
RPS_TIMER,
|
||||
SMADS;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static ApplicationID fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,140 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for assetType.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="assetType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="ACCOUNT"/>
|
||||
* <enumeration value="EXTERNAL_SERVICES"/>
|
||||
* <enumeration value="RECURSIVE"/>
|
||||
* <enumeration value="ZONE"/>
|
||||
* <enumeration value="RESOURCE_RECORD"/>
|
||||
* <enumeration value="USER"/>
|
||||
* <enumeration value="APPLIANCE"/>
|
||||
* <enumeration value="DHCP"/>
|
||||
* <enumeration value="REPORT"/>
|
||||
* <enumeration value="SERVICE_PACKAGE"/>
|
||||
* <enumeration value="DIRECTIONALDNS"/>
|
||||
* <enumeration value="DIRECTIONALDNS_RECORD"/>
|
||||
* <enumeration value="WEB_FORWARD"/>
|
||||
* <enumeration value="MAIL_FORWARD"/>
|
||||
* <enumeration value="TRAFFICCONTROLLER_POOL"/>
|
||||
* <enumeration value="TC_POOL_RECORD"/>
|
||||
* <enumeration value="ROUNDROBIN_POOL"/>
|
||||
* <enumeration value="RD_POOL_RECORD"/>
|
||||
* <enumeration value="PROPERTIES"/>
|
||||
* <enumeration value="MAIL_MXBACKER"/>
|
||||
* <enumeration value="ACCOUNT_PERMISSIONS"/>
|
||||
* <enumeration value="ACCOUNT_PREFERENCES"/>
|
||||
* <enumeration value="BILLING"/>
|
||||
* <enumeration value="GROUPS_AND_USERS"/>
|
||||
* <enumeration value="A"/>
|
||||
* <enumeration value="AAAA"/>
|
||||
* <enumeration value="CNAME"/>
|
||||
* <enumeration value="TXT"/>
|
||||
* <enumeration value="SRV"/>
|
||||
* <enumeration value="NS"/>
|
||||
* <enumeration value="PTR"/>
|
||||
* <enumeration value="RP"/>
|
||||
* <enumeration value="HINFO"/>
|
||||
* <enumeration value="NAPTR"/>
|
||||
* <enumeration value="MX"/>
|
||||
* <enumeration value="OTHER_RR"/>
|
||||
* <enumeration value="SITEBACKER_POOL"/>
|
||||
* <enumeration value="SCHEDULER_TASK"/>
|
||||
* <enumeration value="SITEBACKER_DISTRIBUTOR"/>
|
||||
* <enumeration value="SITEBACKER_AGENT"/>
|
||||
* <enumeration value="SITEBACKER_POOL_RECORD"/>
|
||||
* <enumeration value="SITEBACKER_POOL_PROBE"/>
|
||||
* <enumeration value="SOA"/>
|
||||
* <enumeration value="ACCOUNT_LEVEL_DIRECTIONAL_GROUP"/>
|
||||
* <enumeration value="RESOURCE_DISTRIBUTION_POOL"/>
|
||||
* <enumeration value="ADAPTIVERESPONSE_POOL"/>
|
||||
* <enumeration value="ADAPTIVERESPONSE_POOL_CONFIGURATION"/>
|
||||
* <enumeration value="ADAPTIVERESPONSE_POOL_RECORD"/>
|
||||
* <enumeration value="ADAPTIVERESPONSE_POOL_PROBE"/>
|
||||
* <enumeration value="ADAPTIVERESPONSE_RECORD_PROBE"/>
|
||||
* <enumeration value="ADAPTIVERESPONSE_PROBE_DEFINITION"/>
|
||||
* <enumeration value="SIMPLEFAILOVER_POOL"/>
|
||||
* <enumeration value="MONITORED_RD_POOL"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "assetType")
|
||||
@XmlEnum
|
||||
public enum AssetType {
|
||||
|
||||
ACCOUNT,
|
||||
EXTERNAL_SERVICES,
|
||||
RECURSIVE,
|
||||
ZONE,
|
||||
RESOURCE_RECORD,
|
||||
USER,
|
||||
APPLIANCE,
|
||||
DHCP,
|
||||
REPORT,
|
||||
SERVICE_PACKAGE,
|
||||
DIRECTIONALDNS,
|
||||
DIRECTIONALDNS_RECORD,
|
||||
WEB_FORWARD,
|
||||
MAIL_FORWARD,
|
||||
TRAFFICCONTROLLER_POOL,
|
||||
TC_POOL_RECORD,
|
||||
ROUNDROBIN_POOL,
|
||||
RD_POOL_RECORD,
|
||||
PROPERTIES,
|
||||
MAIL_MXBACKER,
|
||||
ACCOUNT_PERMISSIONS,
|
||||
ACCOUNT_PREFERENCES,
|
||||
BILLING,
|
||||
GROUPS_AND_USERS,
|
||||
A,
|
||||
AAAA,
|
||||
CNAME,
|
||||
TXT,
|
||||
SRV,
|
||||
NS,
|
||||
PTR,
|
||||
RP,
|
||||
HINFO,
|
||||
NAPTR,
|
||||
MX,
|
||||
OTHER_RR,
|
||||
SITEBACKER_POOL,
|
||||
SCHEDULER_TASK,
|
||||
SITEBACKER_DISTRIBUTOR,
|
||||
SITEBACKER_AGENT,
|
||||
SITEBACKER_POOL_RECORD,
|
||||
SITEBACKER_POOL_PROBE,
|
||||
SOA,
|
||||
ACCOUNT_LEVEL_DIRECTIONAL_GROUP,
|
||||
RESOURCE_DISTRIBUTION_POOL,
|
||||
ADAPTIVERESPONSE_POOL,
|
||||
ADAPTIVERESPONSE_POOL_CONFIGURATION,
|
||||
ADAPTIVERESPONSE_POOL_RECORD,
|
||||
ADAPTIVERESPONSE_POOL_PROBE,
|
||||
ADAPTIVERESPONSE_RECORD_PROBE,
|
||||
ADAPTIVERESPONSE_PROBE_DEFINITION,
|
||||
SIMPLEFAILOVER_POOL,
|
||||
MONITORED_RD_POOL;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static AssetType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,276 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for auditSummary complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="auditSummary">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="accountID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="action" type="{http://webservice.api.ultra.neustar.com/v01/}action" minOccurs="0"/>
|
||||
* <element name="applicationID" type="{http://webservice.api.ultra.neustar.com/v01/}applicationID" minOccurs="0"/>
|
||||
* <element name="assetType" type="{http://webservice.api.ultra.neustar.com/v01/}assetType" minOccurs="0"/>
|
||||
* <element name="ipAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="logDate" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="objectID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="objectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="userID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "auditSummary", propOrder = {
|
||||
"accountID",
|
||||
"action",
|
||||
"applicationID",
|
||||
"assetType",
|
||||
"ipAddress",
|
||||
"logDate",
|
||||
"objectID",
|
||||
"objectName",
|
||||
"userID"
|
||||
})
|
||||
public class AuditSummary {
|
||||
|
||||
protected String accountID;
|
||||
protected Action action;
|
||||
protected ApplicationID applicationID;
|
||||
protected AssetType assetType;
|
||||
protected String ipAddress;
|
||||
protected Long logDate;
|
||||
protected String objectID;
|
||||
protected String objectName;
|
||||
protected String userID;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountID() {
|
||||
return accountID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountID(String value) {
|
||||
this.accountID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the action property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Action }
|
||||
*
|
||||
*/
|
||||
public Action getAction() {
|
||||
return action;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the action property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Action }
|
||||
*
|
||||
*/
|
||||
public void setAction(Action value) {
|
||||
this.action = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the applicationID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ApplicationID }
|
||||
*
|
||||
*/
|
||||
public ApplicationID getApplicationID() {
|
||||
return applicationID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the applicationID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ApplicationID }
|
||||
*
|
||||
*/
|
||||
public void setApplicationID(ApplicationID value) {
|
||||
this.applicationID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the assetType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AssetType }
|
||||
*
|
||||
*/
|
||||
public AssetType getAssetType() {
|
||||
return assetType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the assetType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AssetType }
|
||||
*
|
||||
*/
|
||||
public void setAssetType(AssetType value) {
|
||||
this.assetType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ipAddress property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIpAddress() {
|
||||
return ipAddress;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ipAddress property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIpAddress(String value) {
|
||||
this.ipAddress = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the logDate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getLogDate() {
|
||||
return logDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the logDate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setLogDate(Long value) {
|
||||
this.logDate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the objectID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getObjectID() {
|
||||
return objectID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the objectID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setObjectID(String value) {
|
||||
this.objectID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the objectName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getObjectName() {
|
||||
return objectName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the objectName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setObjectName(String value) {
|
||||
this.objectName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the userID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUserID() {
|
||||
return userID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the userID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUserID(String value) {
|
||||
this.userID = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for code.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="PENDING"/>
|
||||
* <enumeration value="IN_PROCESS"/>
|
||||
* <enumeration value="COMPLETE"/>
|
||||
* <enumeration value="ERROR"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "code")
|
||||
@XmlEnum
|
||||
public enum Code {
|
||||
|
||||
PENDING,
|
||||
IN_PROCESS,
|
||||
COMPLETE,
|
||||
ERROR;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for conversionTypeEnum.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="conversionTypeEnum">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="A"/>
|
||||
* <enumeration value="RD"/>
|
||||
* <enumeration value="SIMPLE_FAILOVER"/>
|
||||
* <enumeration value="ADAPTIVE_RESPONSE"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "conversionTypeEnum")
|
||||
@XmlEnum
|
||||
public enum ConversionTypeEnum {
|
||||
|
||||
A,
|
||||
RD,
|
||||
SIMPLE_FAILOVER,
|
||||
ADAPTIVE_RESPONSE;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static ConversionTypeEnum fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for convertTypeEnum.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="convertTypeEnum">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="A"/>
|
||||
* <enumeration value="MRD"/>
|
||||
* <enumeration value="ADAPTIVE_RESPONSE"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "convertTypeEnum")
|
||||
@XmlEnum
|
||||
public enum ConvertTypeEnum {
|
||||
|
||||
A,
|
||||
MRD,
|
||||
ADAPTIVE_RESPONSE;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static ConvertTypeEnum fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for createType.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="createType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="NEW"/>
|
||||
* <enumeration value="COPY"/>
|
||||
* <enumeration value="TRANSFER"/>
|
||||
* <enumeration value="UPLOAD"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "createType")
|
||||
@XmlEnum
|
||||
public enum CreateType {
|
||||
|
||||
NEW,
|
||||
COPY,
|
||||
TRANSFER,
|
||||
UPLOAD;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CreateType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for DeleteZoneStatus complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DeleteZoneStatus">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="status" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="taskId" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DeleteZoneStatus")
|
||||
public class DeleteZoneStatus {
|
||||
|
||||
@XmlAttribute(name = "status")
|
||||
protected String status;
|
||||
@XmlAttribute(name = "taskId")
|
||||
protected String taskId;
|
||||
|
||||
/**
|
||||
* Gets the value of the status property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the status property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStatus(String value) {
|
||||
this.status = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the taskId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the taskId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTaskId(String value) {
|
||||
this.taskId = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,116 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for internalZone complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="internalZone">
|
||||
* <complexContent>
|
||||
* <extension base="{http://webservice.api.ultra.neustar.com/v01/}zone">
|
||||
* <sequence>
|
||||
* <element name="auditSummary" type="{http://webservice.api.ultra.neustar.com/v01/}auditSummary" minOccurs="0"/>
|
||||
* <element name="transferInfo" type="{http://webservice.api.ultra.neustar.com/v01/}transferInfo" minOccurs="0"/>
|
||||
* <element name="transferStatus" type="{http://webservice.api.ultra.neustar.com/v01/}transferStatus" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "internalZone", propOrder = {
|
||||
"auditSummary",
|
||||
"transferInfo",
|
||||
"transferStatus"
|
||||
})
|
||||
public class InternalZone
|
||||
extends Zone
|
||||
{
|
||||
|
||||
protected AuditSummary auditSummary;
|
||||
protected TransferInfo transferInfo;
|
||||
protected TransferStatus transferStatus;
|
||||
|
||||
/**
|
||||
* Gets the value of the auditSummary property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AuditSummary }
|
||||
*
|
||||
*/
|
||||
public AuditSummary getAuditSummary() {
|
||||
return auditSummary;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the auditSummary property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AuditSummary }
|
||||
*
|
||||
*/
|
||||
public void setAuditSummary(AuditSummary value) {
|
||||
this.auditSummary = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the transferInfo property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TransferInfo }
|
||||
*
|
||||
*/
|
||||
public TransferInfo getTransferInfo() {
|
||||
return transferInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the transferInfo property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TransferInfo }
|
||||
*
|
||||
*/
|
||||
public void setTransferInfo(TransferInfo value) {
|
||||
this.transferInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the transferStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TransferStatus }
|
||||
*
|
||||
*/
|
||||
public TransferStatus getTransferStatus() {
|
||||
return transferStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the transferStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TransferStatus }
|
||||
*
|
||||
*/
|
||||
public void setTransferStatus(TransferStatus value) {
|
||||
this.transferStatus = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for nameServer complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="nameServer">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="tsigKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="tsigKeyValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "nameServer", propOrder = {
|
||||
"ip",
|
||||
"tsigKey",
|
||||
"tsigKeyValue"
|
||||
})
|
||||
public class NameServer {
|
||||
|
||||
protected String ip;
|
||||
protected String tsigKey;
|
||||
protected String tsigKeyValue;
|
||||
|
||||
/**
|
||||
* Gets the value of the ip property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIp() {
|
||||
return ip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ip property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIp(String value) {
|
||||
this.ip = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the tsigKey property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTsigKey() {
|
||||
return tsigKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the tsigKey property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTsigKey(String value) {
|
||||
this.tsigKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the tsigKeyValue property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTsigKeyValue() {
|
||||
return tsigKeyValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the tsigKeyValue property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTsigKeyValue(String value) {
|
||||
this.tsigKeyValue = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for nameServerIpList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="nameServerIpList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="nameServerIp1" type="{http://webservice.api.ultra.neustar.com/v01/}nameServer" minOccurs="0"/>
|
||||
* <element name="nameServerIp2" type="{http://webservice.api.ultra.neustar.com/v01/}nameServer" minOccurs="0"/>
|
||||
* <element name="nameServerIp3" type="{http://webservice.api.ultra.neustar.com/v01/}nameServer" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "nameServerIpList", propOrder = {
|
||||
"nameServerIp1",
|
||||
"nameServerIp2",
|
||||
"nameServerIp3"
|
||||
})
|
||||
public class NameServerIpList {
|
||||
|
||||
protected NameServer nameServerIp1;
|
||||
protected NameServer nameServerIp2;
|
||||
protected NameServer nameServerIp3;
|
||||
|
||||
/**
|
||||
* Gets the value of the nameServerIp1 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public NameServer getNameServerIp1() {
|
||||
return nameServerIp1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nameServerIp1 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public void setNameServerIp1(NameServer value) {
|
||||
this.nameServerIp1 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the nameServerIp2 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public NameServer getNameServerIp2() {
|
||||
return nameServerIp2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nameServerIp2 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public void setNameServerIp2(NameServer value) {
|
||||
this.nameServerIp2 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the nameServerIp3 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public NameServer getNameServerIp3() {
|
||||
return nameServerIp3;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nameServerIp3 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public void setNameServerIp3(NameServer value) {
|
||||
this.nameServerIp3 = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,165 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlElementDecl;
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the com.neustar.ultra.api.webservice.v01 package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
private final static QName _UltraWSException_QNAME = new QName("http://webservice.api.ultra.neustar.com/v01/", "UltraWSException");
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.neustar.ultra.api.webservice.v01
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link UltraWSException }
|
||||
*
|
||||
*/
|
||||
public UltraWSException createUltraWSException() {
|
||||
return new UltraWSException();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RestrictIP }
|
||||
*
|
||||
*/
|
||||
public RestrictIP createRestrictIP() {
|
||||
return new RestrictIP();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DeleteZoneStatus }
|
||||
*
|
||||
*/
|
||||
public DeleteZoneStatus createDeleteZoneStatus() {
|
||||
return new DeleteZoneStatus();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link SecondaryZoneInfo }
|
||||
*
|
||||
*/
|
||||
public SecondaryZoneInfo createSecondaryZoneInfo() {
|
||||
return new SecondaryZoneInfo();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link NameServerIpList }
|
||||
*
|
||||
*/
|
||||
public NameServerIpList createNameServerIpList() {
|
||||
return new NameServerIpList();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public NameServer createNameServer() {
|
||||
return new NameServer();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PrimaryZoneInfo }
|
||||
*
|
||||
*/
|
||||
public PrimaryZoneInfo createPrimaryZoneInfo() {
|
||||
return new PrimaryZoneInfo();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TransferInfo }
|
||||
*
|
||||
*/
|
||||
public TransferInfo createTransferInfo() {
|
||||
return new TransferInfo();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TransferStatus }
|
||||
*
|
||||
*/
|
||||
public TransferStatus createTransferStatus() {
|
||||
return new TransferStatus();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ZoneProperties }
|
||||
*
|
||||
*/
|
||||
public ZoneProperties createZoneProperties() {
|
||||
return new ZoneProperties();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AuditSummary }
|
||||
*
|
||||
*/
|
||||
public AuditSummary createAuditSummary() {
|
||||
return new AuditSummary();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link InternalZone }
|
||||
*
|
||||
*/
|
||||
public InternalZone createInternalZone() {
|
||||
return new InternalZone();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PrimaryNameServers }
|
||||
*
|
||||
*/
|
||||
public PrimaryNameServers createPrimaryNameServers() {
|
||||
return new PrimaryNameServers();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AliasZoneInfo }
|
||||
*
|
||||
*/
|
||||
public AliasZoneInfo createAliasZoneInfo() {
|
||||
return new AliasZoneInfo();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link Zone }
|
||||
*
|
||||
*/
|
||||
public Zone createZone() {
|
||||
return new Zone();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link UltraWSException }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "http://webservice.api.ultra.neustar.com/v01/", name = "UltraWSException")
|
||||
public JAXBElement<UltraWSException> createUltraWSException(UltraWSException value) {
|
||||
return new JAXBElement<UltraWSException>(_UltraWSException_QNAME, UltraWSException.class, null, value);
|
||||
}
|
||||
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for primaryNameServers complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="primaryNameServers">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="nameServerIpList" type="{http://webservice.api.ultra.neustar.com/v01/}nameServerIpList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "primaryNameServers", propOrder = {
|
||||
"nameServerIpList"
|
||||
})
|
||||
public class PrimaryNameServers {
|
||||
|
||||
protected NameServerIpList nameServerIpList;
|
||||
|
||||
/**
|
||||
* Gets the value of the nameServerIpList property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NameServerIpList }
|
||||
*
|
||||
*/
|
||||
public NameServerIpList getNameServerIpList() {
|
||||
return nameServerIpList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nameServerIpList property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NameServerIpList }
|
||||
*
|
||||
*/
|
||||
public void setNameServerIpList(NameServerIpList value) {
|
||||
this.nameServerIpList = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,177 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for primaryZoneInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="primaryZoneInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="createType" type="{http://webservice.api.ultra.neustar.com/v01/}createType" minOccurs="0"/>
|
||||
* <element name="forceImport" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="nameServer" type="{http://webservice.api.ultra.neustar.com/v01/}nameServer" minOccurs="0"/>
|
||||
* <element name="originalZoneName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="restrictIPList" type="{http://webservice.api.ultra.neustar.com/v01/}restrictIP" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "primaryZoneInfo", propOrder = {
|
||||
"createType",
|
||||
"forceImport",
|
||||
"nameServer",
|
||||
"originalZoneName",
|
||||
"restrictIPList"
|
||||
})
|
||||
public class PrimaryZoneInfo {
|
||||
|
||||
protected CreateType createType;
|
||||
protected Boolean forceImport;
|
||||
protected NameServer nameServer;
|
||||
protected String originalZoneName;
|
||||
@XmlElement(nillable = true)
|
||||
protected List<RestrictIP> restrictIPList;
|
||||
|
||||
/**
|
||||
* Gets the value of the createType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CreateType }
|
||||
*
|
||||
*/
|
||||
public CreateType getCreateType() {
|
||||
return createType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the createType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CreateType }
|
||||
*
|
||||
*/
|
||||
public void setCreateType(CreateType value) {
|
||||
this.createType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the forceImport property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isForceImport() {
|
||||
return forceImport;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the forceImport property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setForceImport(Boolean value) {
|
||||
this.forceImport = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the nameServer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public NameServer getNameServer() {
|
||||
return nameServer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nameServer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NameServer }
|
||||
*
|
||||
*/
|
||||
public void setNameServer(NameServer value) {
|
||||
this.nameServer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the originalZoneName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOriginalZoneName() {
|
||||
return originalZoneName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the originalZoneName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOriginalZoneName(String value) {
|
||||
this.originalZoneName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the restrictIPList property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the restrictIPList property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRestrictIPList().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link RestrictIP }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<RestrictIP> getRestrictIPList() {
|
||||
if (restrictIPList == null) {
|
||||
restrictIPList = new ArrayList<RestrictIP>();
|
||||
}
|
||||
return this.restrictIPList;
|
||||
}
|
||||
|
||||
}
|
@ -1,168 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for restrictIP complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="restrictIP">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="endIP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="startIP" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="tsigKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="tsigKeyValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "restrictIP", propOrder = {
|
||||
"comment",
|
||||
"endIP",
|
||||
"startIP",
|
||||
"tsigKey",
|
||||
"tsigKeyValue"
|
||||
})
|
||||
public class RestrictIP {
|
||||
|
||||
protected String comment;
|
||||
protected String endIP;
|
||||
protected String startIP;
|
||||
protected String tsigKey;
|
||||
protected String tsigKeyValue;
|
||||
|
||||
/**
|
||||
* Gets the value of the comment property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getComment() {
|
||||
return comment;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the comment property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setComment(String value) {
|
||||
this.comment = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the endIP property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEndIP() {
|
||||
return endIP;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the endIP property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEndIP(String value) {
|
||||
this.endIP = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startIP property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStartIP() {
|
||||
return startIP;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the startIP property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStartIP(String value) {
|
||||
this.startIP = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the tsigKey property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTsigKey() {
|
||||
return tsigKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the tsigKey property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTsigKey(String value) {
|
||||
this.tsigKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the tsigKeyValue property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTsigKeyValue() {
|
||||
return tsigKeyValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the tsigKeyValue property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTsigKeyValue(String value) {
|
||||
this.tsigKeyValue = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for secondaryZoneInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="secondaryZoneInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="notificationEmailAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="primaryNameServers" type="{http://webservice.api.ultra.neustar.com/v01/}primaryNameServers" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "secondaryZoneInfo", propOrder = {
|
||||
"notificationEmailAddress",
|
||||
"primaryNameServers"
|
||||
})
|
||||
public class SecondaryZoneInfo {
|
||||
|
||||
protected String notificationEmailAddress;
|
||||
protected PrimaryNameServers primaryNameServers;
|
||||
|
||||
/**
|
||||
* Gets the value of the notificationEmailAddress property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNotificationEmailAddress() {
|
||||
return notificationEmailAddress;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the notificationEmailAddress property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNotificationEmailAddress(String value) {
|
||||
this.notificationEmailAddress = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the primaryNameServers property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PrimaryNameServers }
|
||||
*
|
||||
*/
|
||||
public PrimaryNameServers getPrimaryNameServers() {
|
||||
return primaryNameServers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the primaryNameServers property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PrimaryNameServers }
|
||||
*
|
||||
*/
|
||||
public void setPrimaryNameServers(PrimaryNameServers value) {
|
||||
this.primaryNameServers = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,202 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for transferInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="transferInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="accountId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="nsHosts" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="sponsorId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="suspended" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="toEmailIds" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "transferInfo", propOrder = {
|
||||
"accountId",
|
||||
"nsHosts",
|
||||
"sponsorId",
|
||||
"suspended",
|
||||
"toEmailIds",
|
||||
"userId"
|
||||
})
|
||||
public class TransferInfo {
|
||||
|
||||
protected String accountId;
|
||||
@XmlElement(nillable = true)
|
||||
protected List<String> nsHosts;
|
||||
protected String sponsorId;
|
||||
protected boolean suspended;
|
||||
@XmlElement(nillable = true)
|
||||
protected List<String> toEmailIds;
|
||||
protected String userId;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountId() {
|
||||
return accountId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountId(String value) {
|
||||
this.accountId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the nsHosts property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the nsHosts property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getNsHosts().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getNsHosts() {
|
||||
if (nsHosts == null) {
|
||||
nsHosts = new ArrayList<String>();
|
||||
}
|
||||
return this.nsHosts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the sponsorId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSponsorId() {
|
||||
return sponsorId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the sponsorId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSponsorId(String value) {
|
||||
this.sponsorId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the suspended property.
|
||||
*
|
||||
*/
|
||||
public boolean isSuspended() {
|
||||
return suspended;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the suspended property.
|
||||
*
|
||||
*/
|
||||
public void setSuspended(boolean value) {
|
||||
this.suspended = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the toEmailIds property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the toEmailIds property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getToEmailIds().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getToEmailIds() {
|
||||
if (toEmailIds == null) {
|
||||
toEmailIds = new ArrayList<String>();
|
||||
}
|
||||
return this.toEmailIds;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the userId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the userId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUserId(String value) {
|
||||
this.userId = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,144 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for transferStatus complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="transferStatus">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="lastUpdate" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="nextUpdate" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="soaSerial" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="transferStatusType" type="{http://webservice.api.ultra.neustar.com/v01/}transferStatusType" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "transferStatus", propOrder = {
|
||||
"lastUpdate",
|
||||
"message",
|
||||
"nextUpdate",
|
||||
"soaSerial",
|
||||
"transferStatusType"
|
||||
})
|
||||
public class TransferStatus {
|
||||
|
||||
protected long lastUpdate;
|
||||
protected String message;
|
||||
protected long nextUpdate;
|
||||
protected long soaSerial;
|
||||
protected TransferStatusType transferStatusType;
|
||||
|
||||
/**
|
||||
* Gets the value of the lastUpdate property.
|
||||
*
|
||||
*/
|
||||
public long getLastUpdate() {
|
||||
return lastUpdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastUpdate property.
|
||||
*
|
||||
*/
|
||||
public void setLastUpdate(long value) {
|
||||
this.lastUpdate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the message property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the message property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMessage(String value) {
|
||||
this.message = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the nextUpdate property.
|
||||
*
|
||||
*/
|
||||
public long getNextUpdate() {
|
||||
return nextUpdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nextUpdate property.
|
||||
*
|
||||
*/
|
||||
public void setNextUpdate(long value) {
|
||||
this.nextUpdate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the soaSerial property.
|
||||
*
|
||||
*/
|
||||
public long getSoaSerial() {
|
||||
return soaSerial;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the soaSerial property.
|
||||
*
|
||||
*/
|
||||
public void setSoaSerial(long value) {
|
||||
this.soaSerial = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the transferStatusType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TransferStatusType }
|
||||
*
|
||||
*/
|
||||
public TransferStatusType getTransferStatusType() {
|
||||
return transferStatusType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the transferStatusType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TransferStatusType }
|
||||
*
|
||||
*/
|
||||
public void setTransferStatusType(TransferStatusType value) {
|
||||
this.transferStatusType = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for transferStatusType.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="transferStatusType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="QUEUED"/>
|
||||
* <enumeration value="IN_PROGRESS"/>
|
||||
* <enumeration value="COMPLETED"/>
|
||||
* <enumeration value="FAILED"/>
|
||||
* <enumeration value="NOT_REQUESTED"/>
|
||||
* <enumeration value="PENDING"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "transferStatusType")
|
||||
@XmlEnum
|
||||
public enum TransferStatusType {
|
||||
|
||||
QUEUED,
|
||||
IN_PROGRESS,
|
||||
COMPLETED,
|
||||
FAILED,
|
||||
NOT_REQUESTED,
|
||||
PENDING;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static TransferStatusType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for UltraWSException complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="UltraWSException">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="errorDescription" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "UltraWSException", propOrder = {
|
||||
"errorCode",
|
||||
"errorDescription"
|
||||
})
|
||||
public class UltraWSException {
|
||||
|
||||
@XmlElement(required = true, type = Integer.class, nillable = true)
|
||||
protected Integer errorCode;
|
||||
@XmlElement(required = true, nillable = true)
|
||||
protected String errorDescription;
|
||||
|
||||
/**
|
||||
* Gets the value of the errorCode property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getErrorCode() {
|
||||
return errorCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the errorCode property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setErrorCode(Integer value) {
|
||||
this.errorCode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the errorDescription property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getErrorDescription() {
|
||||
return errorDescription;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the errorDescription property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setErrorDescription(String value) {
|
||||
this.errorDescription = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,43 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.ws.WebFault;
|
||||
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 2.7.7
|
||||
* 2014-01-15T10:08:40.557-05:00
|
||||
* Generated source version: 2.7.7
|
||||
*/
|
||||
|
||||
@WebFault(name = "UltraWSException", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/")
|
||||
public class UltraWSException_Exception extends Exception {
|
||||
|
||||
private com.neustar.ultra.api.webservice.v01.UltraWSException ultraWSException;
|
||||
|
||||
public UltraWSException_Exception() {
|
||||
super();
|
||||
}
|
||||
|
||||
public UltraWSException_Exception(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public UltraWSException_Exception(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public UltraWSException_Exception(String message, com.neustar.ultra.api.webservice.v01.UltraWSException ultraWSException) {
|
||||
super(message);
|
||||
this.ultraWSException = ultraWSException;
|
||||
}
|
||||
|
||||
public UltraWSException_Exception(String message, com.neustar.ultra.api.webservice.v01.UltraWSException ultraWSException, Throwable cause) {
|
||||
super(message, cause);
|
||||
this.ultraWSException = ultraWSException;
|
||||
}
|
||||
|
||||
public com.neustar.ultra.api.webservice.v01.UltraWSException getFaultInfo() {
|
||||
return this.ultraWSException;
|
||||
}
|
||||
}
|
@ -1,73 +0,0 @@
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
import javax.xml.namespace.QName;
|
||||
import javax.xml.ws.WebEndpoint;
|
||||
import javax.xml.ws.WebServiceClient;
|
||||
import javax.xml.ws.WebServiceFeature;
|
||||
import javax.xml.ws.Service;
|
||||
|
||||
/**
|
||||
* This class was generated by Apache CXF 2.7.7
|
||||
* 2014-01-15T10:08:40.739-05:00
|
||||
* Generated source version: 2.7.7
|
||||
*
|
||||
*/
|
||||
@WebServiceClient(name = "UltraWebServiceV01Service",
|
||||
wsdlLocation = "http://ultra-api.ultradns.com/UltraDNS_WS/v01?wsdl",
|
||||
targetNamespace = "http://webservice.api.ultra.neustar.com/v01/")
|
||||
public class UltraWebServiceV01Service extends Service {
|
||||
|
||||
public final static URL WSDL_LOCATION;
|
||||
|
||||
public final static QName SERVICE = new QName("http://webservice.api.ultra.neustar.com/v01/", "UltraWebServiceV01Service");
|
||||
public final static QName UltraWebServiceV01Port = new QName("http://webservice.api.ultra.neustar.com/v01/", "UltraWebServiceV01Port");
|
||||
static {
|
||||
URL url = null;
|
||||
try {
|
||||
url = new URL("http://ultra-api.ultradns.com/UltraDNS_WS/v01?wsdl");
|
||||
} catch (MalformedURLException e) {
|
||||
java.util.logging.Logger.getLogger(UltraWebServiceV01Service.class.getName())
|
||||
.log(java.util.logging.Level.INFO,
|
||||
"Can not initialize the default wsdl from {0}", "http://ultra-api.ultradns.com/UltraDNS_WS/v01?wsdl");
|
||||
}
|
||||
WSDL_LOCATION = url;
|
||||
}
|
||||
|
||||
public UltraWebServiceV01Service(URL wsdlLocation) {
|
||||
super(wsdlLocation, SERVICE);
|
||||
}
|
||||
|
||||
public UltraWebServiceV01Service(URL wsdlLocation, QName serviceName) {
|
||||
super(wsdlLocation, serviceName);
|
||||
}
|
||||
|
||||
public UltraWebServiceV01Service() {
|
||||
super(WSDL_LOCATION, SERVICE);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
* returns UltraDNS1
|
||||
*/
|
||||
@WebEndpoint(name = "UltraWebServiceV01Port")
|
||||
public UltraDNS1 getUltraWebServiceV01Port() {
|
||||
return super.getPort(UltraWebServiceV01Port, UltraDNS1.class);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param features
|
||||
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
|
||||
* @return
|
||||
* returns UltraDNS1
|
||||
*/
|
||||
@WebEndpoint(name = "UltraWebServiceV01Port")
|
||||
public UltraDNS1 getUltraWebServiceV01Port(WebServiceFeature... features) {
|
||||
return super.getPort(UltraWebServiceV01Port, UltraDNS1.class, features);
|
||||
}
|
||||
|
||||
}
|
@ -1,145 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for zone complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="zone">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="aliasZoneInfo" type="{http://webservice.api.ultra.neustar.com/v01/}aliasZoneInfo" minOccurs="0"/>
|
||||
* <element name="primaryZoneInfo" type="{http://webservice.api.ultra.neustar.com/v01/}primaryZoneInfo" minOccurs="0"/>
|
||||
* <element name="secondaryZoneInfo" type="{http://webservice.api.ultra.neustar.com/v01/}secondaryZoneInfo" minOccurs="0"/>
|
||||
* <element name="zoneProperties" type="{http://webservice.api.ultra.neustar.com/v01/}zoneProperties" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "zone", propOrder = {
|
||||
"aliasZoneInfo",
|
||||
"primaryZoneInfo",
|
||||
"secondaryZoneInfo",
|
||||
"zoneProperties"
|
||||
})
|
||||
@XmlSeeAlso({
|
||||
InternalZone.class
|
||||
})
|
||||
public class Zone {
|
||||
|
||||
protected AliasZoneInfo aliasZoneInfo;
|
||||
protected PrimaryZoneInfo primaryZoneInfo;
|
||||
protected SecondaryZoneInfo secondaryZoneInfo;
|
||||
protected ZoneProperties zoneProperties;
|
||||
|
||||
/**
|
||||
* Gets the value of the aliasZoneInfo property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AliasZoneInfo }
|
||||
*
|
||||
*/
|
||||
public AliasZoneInfo getAliasZoneInfo() {
|
||||
return aliasZoneInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the aliasZoneInfo property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AliasZoneInfo }
|
||||
*
|
||||
*/
|
||||
public void setAliasZoneInfo(AliasZoneInfo value) {
|
||||
this.aliasZoneInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the primaryZoneInfo property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PrimaryZoneInfo }
|
||||
*
|
||||
*/
|
||||
public PrimaryZoneInfo getPrimaryZoneInfo() {
|
||||
return primaryZoneInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the primaryZoneInfo property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PrimaryZoneInfo }
|
||||
*
|
||||
*/
|
||||
public void setPrimaryZoneInfo(PrimaryZoneInfo value) {
|
||||
this.primaryZoneInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the secondaryZoneInfo property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SecondaryZoneInfo }
|
||||
*
|
||||
*/
|
||||
public SecondaryZoneInfo getSecondaryZoneInfo() {
|
||||
return secondaryZoneInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the secondaryZoneInfo property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SecondaryZoneInfo }
|
||||
*
|
||||
*/
|
||||
public void setSecondaryZoneInfo(SecondaryZoneInfo value) {
|
||||
this.secondaryZoneInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zoneProperties property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ZoneProperties }
|
||||
*
|
||||
*/
|
||||
public ZoneProperties getZoneProperties() {
|
||||
return zoneProperties;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zoneProperties property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ZoneProperties }
|
||||
*
|
||||
*/
|
||||
public void setZoneProperties(ZoneProperties value) {
|
||||
this.zoneProperties = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,241 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for zoneProperties complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="zoneProperties">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="accountName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="dnssecStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="lastModifiedDateTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="owner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="resourceRecordCount" type="{http://www.w3.org/2001/XMLSchema}long"/>
|
||||
* <element name="type" type="{http://webservice.api.ultra.neustar.com/v01/}zoneType" minOccurs="0"/>
|
||||
* <element name="zoneId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "zoneProperties", propOrder = {
|
||||
"accountName",
|
||||
"dnssecStatus",
|
||||
"lastModifiedDateTime",
|
||||
"name",
|
||||
"owner",
|
||||
"resourceRecordCount",
|
||||
"type",
|
||||
"zoneId"
|
||||
})
|
||||
public class ZoneProperties {
|
||||
|
||||
protected String accountName;
|
||||
protected String dnssecStatus;
|
||||
protected String lastModifiedDateTime;
|
||||
protected String name;
|
||||
protected String owner;
|
||||
protected long resourceRecordCount;
|
||||
protected ZoneType type;
|
||||
protected String zoneId;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dnssecStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDnssecStatus() {
|
||||
return dnssecStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dnssecStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDnssecStatus(String value) {
|
||||
this.dnssecStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastModifiedDateTime property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastModifiedDateTime() {
|
||||
return lastModifiedDateTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastModifiedDateTime property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastModifiedDateTime(String value) {
|
||||
this.lastModifiedDateTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the name property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the name property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setName(String value) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the owner property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOwner() {
|
||||
return owner;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the owner property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOwner(String value) {
|
||||
this.owner = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the resourceRecordCount property.
|
||||
*
|
||||
*/
|
||||
public long getResourceRecordCount() {
|
||||
return resourceRecordCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the resourceRecordCount property.
|
||||
*
|
||||
*/
|
||||
public void setResourceRecordCount(long value) {
|
||||
this.resourceRecordCount = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the type property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ZoneType }
|
||||
*
|
||||
*/
|
||||
public ZoneType getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the type property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ZoneType }
|
||||
*
|
||||
*/
|
||||
public void setType(ZoneType value) {
|
||||
this.type = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zoneId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZoneId() {
|
||||
return zoneId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zoneId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZoneId(String value) {
|
||||
this.zoneId = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
|
||||
package com.neustar.ultra.api.webservice.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for zoneType.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="zoneType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="PRIMARY"/>
|
||||
* <enumeration value="SECONDARY"/>
|
||||
* <enumeration value="ALIAS"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "zoneType")
|
||||
@XmlEnum
|
||||
public enum ZoneType {
|
||||
|
||||
PRIMARY,
|
||||
SECONDARY,
|
||||
ALIAS;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static ZoneType fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice.api.ultra.neustar.com/v01/")
|
||||
package com.neustar.ultra.api.webservice.v01;
|
@ -1,51 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlEnumValue;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountSegmentMapStatusType.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="AccountSegmentMapStatusType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="Pending"/>
|
||||
* <enumeration value="Active"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "AccountSegmentMapStatusType", namespace = "http://schema.ultraservice.neustar.com/")
|
||||
@XmlEnum
|
||||
public enum AccountSegmentMapStatusType {
|
||||
|
||||
@XmlEnumValue("Pending")
|
||||
PENDING("Pending"),
|
||||
@XmlEnumValue("Active")
|
||||
ACTIVE("Active");
|
||||
private final String value;
|
||||
|
||||
AccountSegmentMapStatusType(String v) {
|
||||
value = v;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static AccountSegmentMapStatusType fromValue(String v) {
|
||||
for (AccountSegmentMapStatusType c: AccountSegmentMapStatusType.values()) {
|
||||
if (c.value.equals(v)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema;
|
||||
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the com.neustar.ultraservice.schema package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.neustar.ultraservice.schema
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARAlertRuleDetails complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARAlertRuleDetails">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="oldRule" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="newRule" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARAlertRuleDetails", propOrder = {
|
||||
"oldRule",
|
||||
"newRule"
|
||||
})
|
||||
public class ARAlertRuleDetails {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String oldRule;
|
||||
@XmlElement(required = true)
|
||||
protected String newRule;
|
||||
|
||||
/**
|
||||
* Gets the value of the oldRule property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOldRule() {
|
||||
return oldRule;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the oldRule property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOldRule(String value) {
|
||||
this.oldRule = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newRule property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNewRule() {
|
||||
return newRule;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newRule property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNewRule(String value) {
|
||||
this.newRule = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,173 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARAlertStateDetails complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARAlertStateDetails">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="oldRecordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState"/>
|
||||
* <element name="newRecordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState"/>
|
||||
* <element name="prioritizedRecords" type="{http://schema.ultraservice.neustar.com/v01/}PrioritizedRecordsList"/>
|
||||
* <element name="allFailDetails" type="{http://schema.ultraservice.neustar.com/v01/}AlertAllFailDetails"/>
|
||||
* <element name="poolStatus" type="{http://schema.ultraservice.neustar.com/v01/}AlertPoolStatus" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARAlertStateDetails", propOrder = {
|
||||
"oldRecordState",
|
||||
"newRecordState",
|
||||
"prioritizedRecords",
|
||||
"allFailDetails",
|
||||
"poolStatus"
|
||||
})
|
||||
public class ARAlertStateDetails {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected RecordState oldRecordState;
|
||||
@XmlElement(required = true)
|
||||
protected RecordState newRecordState;
|
||||
@XmlElement(required = true)
|
||||
protected PrioritizedRecordsList prioritizedRecords;
|
||||
@XmlElement(required = true)
|
||||
protected AlertAllFailDetails allFailDetails;
|
||||
protected AlertPoolStatus poolStatus;
|
||||
|
||||
/**
|
||||
* Gets the value of the oldRecordState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public RecordState getOldRecordState() {
|
||||
return oldRecordState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the oldRecordState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public void setOldRecordState(RecordState value) {
|
||||
this.oldRecordState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newRecordState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public RecordState getNewRecordState() {
|
||||
return newRecordState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newRecordState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public void setNewRecordState(RecordState value) {
|
||||
this.newRecordState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the prioritizedRecords property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PrioritizedRecordsList }
|
||||
*
|
||||
*/
|
||||
public PrioritizedRecordsList getPrioritizedRecords() {
|
||||
return prioritizedRecords;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the prioritizedRecords property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PrioritizedRecordsList }
|
||||
*
|
||||
*/
|
||||
public void setPrioritizedRecords(PrioritizedRecordsList value) {
|
||||
this.prioritizedRecords = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the allFailDetails property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AlertAllFailDetails }
|
||||
*
|
||||
*/
|
||||
public AlertAllFailDetails getAllFailDetails() {
|
||||
return allFailDetails;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the allFailDetails property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AlertAllFailDetails }
|
||||
*
|
||||
*/
|
||||
public void setAllFailDetails(AlertAllFailDetails value) {
|
||||
this.allFailDetails = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the poolStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AlertPoolStatus }
|
||||
*
|
||||
*/
|
||||
public AlertPoolStatus getPoolStatus() {
|
||||
return poolStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AlertPoolStatus }
|
||||
*
|
||||
*/
|
||||
public void setPoolStatus(AlertPoolStatus value) {
|
||||
this.poolStatus = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolAlert complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolAlert">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolAlertDetails" type="{http://schema.ultraservice.neustar.com/v01/}PoolAlertDetails"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolAlert", propOrder = {
|
||||
"poolAlertDetails"
|
||||
})
|
||||
public class ARPoolAlert {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected PoolAlertDetails poolAlertDetails;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolAlertDetails property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PoolAlertDetails }
|
||||
*
|
||||
*/
|
||||
public PoolAlertDetails getPoolAlertDetails() {
|
||||
return poolAlertDetails;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolAlertDetails property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PoolAlertDetails }
|
||||
*
|
||||
*/
|
||||
public void setPoolAlertDetails(PoolAlertDetails value) {
|
||||
this.poolAlertDetails = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolAlerts complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolAlerts">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolAlert" type="{http://schema.ultraservice.neustar.com/v01/}ARPoolAlert" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolAlerts", propOrder = {
|
||||
"poolAlert"
|
||||
})
|
||||
public class ARPoolAlerts {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected List<ARPoolAlert> poolAlert;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolAlert property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the poolAlert property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPoolAlert().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ARPoolAlert }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ARPoolAlert> getPoolAlert() {
|
||||
if (poolAlert == null) {
|
||||
poolAlert = new ArrayList<ARPoolAlert>();
|
||||
}
|
||||
return this.poolAlert;
|
||||
}
|
||||
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolAlertsKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolAlertsKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolAlertsKey", propOrder = {
|
||||
"poolName"
|
||||
})
|
||||
public class ARPoolAlertsKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String poolName;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPoolName() {
|
||||
return poolName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPoolName(String value) {
|
||||
this.poolName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,119 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolAlertsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolAlertsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="arPoolAlerts" type="{http://schema.ultraservice.neustar.com/v01/}ARPoolAlerts"/>
|
||||
* <element name="total" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="count" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolAlertsList", propOrder = {
|
||||
"arPoolAlerts",
|
||||
"total",
|
||||
"offset",
|
||||
"count"
|
||||
})
|
||||
public class ARPoolAlertsList {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected ARPoolAlerts arPoolAlerts;
|
||||
protected int total;
|
||||
protected int offset;
|
||||
protected int count;
|
||||
|
||||
/**
|
||||
* Gets the value of the arPoolAlerts property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ARPoolAlerts }
|
||||
*
|
||||
*/
|
||||
public ARPoolAlerts getArPoolAlerts() {
|
||||
return arPoolAlerts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the arPoolAlerts property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ARPoolAlerts }
|
||||
*
|
||||
*/
|
||||
public void setArPoolAlerts(ARPoolAlerts value) {
|
||||
this.arPoolAlerts = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the total property.
|
||||
*
|
||||
*/
|
||||
public int getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the total property.
|
||||
*
|
||||
*/
|
||||
public void setTotal(int value) {
|
||||
this.total = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the offset property.
|
||||
*
|
||||
*/
|
||||
public int getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the offset property.
|
||||
*
|
||||
*/
|
||||
public void setOffset(int value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the count property.
|
||||
*
|
||||
*/
|
||||
public int getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the count property.
|
||||
*
|
||||
*/
|
||||
public void setCount(int value) {
|
||||
this.count = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolConfigurationKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolConfigurationKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="configurationName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolConfigurationKey", propOrder = {
|
||||
"poolName",
|
||||
"configurationName"
|
||||
})
|
||||
public class ARPoolConfigurationKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String poolName;
|
||||
@XmlElement(required = true)
|
||||
protected String configurationName;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPoolName() {
|
||||
return poolName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPoolName(String value) {
|
||||
this.poolName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the configurationName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getConfigurationName() {
|
||||
return configurationName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the configurationName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setConfigurationName(String value) {
|
||||
this.configurationName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,276 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolConfigurationUpdate complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolConfigurationUpdate">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="failoverEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="probingEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* <element name="responseMethod" type="{http://schema.ultraservice.neustar.com/v01/}ResponseMethod" minOccurs="0"/>
|
||||
* <element name="maxActive" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="maxResponse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="effectiveMaxResponse" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
|
||||
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="prioritizedRecords" type="{http://schema.ultraservice.neustar.com/v01/}PrioritizedRecordList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolConfigurationUpdate", propOrder = {
|
||||
"failoverEnabled",
|
||||
"probingEnabled",
|
||||
"responseMethod",
|
||||
"maxActive",
|
||||
"maxResponse",
|
||||
"effectiveMaxResponse",
|
||||
"ttl",
|
||||
"description",
|
||||
"prioritizedRecords"
|
||||
})
|
||||
public class ARPoolConfigurationUpdate {
|
||||
|
||||
protected Boolean failoverEnabled;
|
||||
protected Boolean probingEnabled;
|
||||
protected ResponseMethod responseMethod;
|
||||
protected Long maxActive;
|
||||
protected Long maxResponse;
|
||||
protected Long effectiveMaxResponse;
|
||||
protected Long ttl;
|
||||
protected String description;
|
||||
protected PrioritizedRecordList prioritizedRecords;
|
||||
|
||||
/**
|
||||
* Gets the value of the failoverEnabled property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isFailoverEnabled() {
|
||||
return failoverEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the failoverEnabled property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setFailoverEnabled(Boolean value) {
|
||||
this.failoverEnabled = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the probingEnabled property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isProbingEnabled() {
|
||||
return probingEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the probingEnabled property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setProbingEnabled(Boolean value) {
|
||||
this.probingEnabled = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the responseMethod property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ResponseMethod }
|
||||
*
|
||||
*/
|
||||
public ResponseMethod getResponseMethod() {
|
||||
return responseMethod;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the responseMethod property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ResponseMethod }
|
||||
*
|
||||
*/
|
||||
public void setResponseMethod(ResponseMethod value) {
|
||||
this.responseMethod = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the maxActive property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getMaxActive() {
|
||||
return maxActive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the maxActive property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setMaxActive(Long value) {
|
||||
this.maxActive = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the maxResponse property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getMaxResponse() {
|
||||
return maxResponse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the maxResponse property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setMaxResponse(Long value) {
|
||||
this.maxResponse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the effectiveMaxResponse property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getEffectiveMaxResponse() {
|
||||
return effectiveMaxResponse;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the effectiveMaxResponse property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setEffectiveMaxResponse(Long value) {
|
||||
this.effectiveMaxResponse = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ttl property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public Long getTtl() {
|
||||
return ttl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ttl property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Long }
|
||||
*
|
||||
*/
|
||||
public void setTtl(Long value) {
|
||||
this.ttl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the description property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the description property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
this.description = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the prioritizedRecords property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PrioritizedRecordList }
|
||||
*
|
||||
*/
|
||||
public PrioritizedRecordList getPrioritizedRecords() {
|
||||
return prioritizedRecords;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the prioritizedRecords property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PrioritizedRecordList }
|
||||
*
|
||||
*/
|
||||
public void setPrioritizedRecords(PrioritizedRecordList value) {
|
||||
this.prioritizedRecords = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolProbeList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolProbeList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="arPoolProbes" type="{http://schema.ultraservice.neustar.com/v01/}ARPoolProbes" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolProbeList", propOrder = {
|
||||
"arPoolProbes"
|
||||
})
|
||||
public class ARPoolProbeList {
|
||||
|
||||
protected ARPoolProbes arPoolProbes;
|
||||
|
||||
/**
|
||||
* Gets the value of the arPoolProbes property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ARPoolProbes }
|
||||
*
|
||||
*/
|
||||
public ARPoolProbes getArPoolProbes() {
|
||||
return arPoolProbes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the arPoolProbes property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ARPoolProbes }
|
||||
*
|
||||
*/
|
||||
public void setArPoolProbes(ARPoolProbes value) {
|
||||
this.arPoolProbes = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolProbes complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolProbes">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="arPoolProbe" type="{http://schema.ultraservice.neustar.com/v01/}ARProbeInfo" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolProbes", propOrder = {
|
||||
"arPoolProbe"
|
||||
})
|
||||
public class ARPoolProbes {
|
||||
|
||||
protected List<ARProbeInfo> arPoolProbe;
|
||||
|
||||
/**
|
||||
* Gets the value of the arPoolProbe property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the arPoolProbe property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getArPoolProbe().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ARProbeInfo }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ARProbeInfo> getArPoolProbe() {
|
||||
if (arPoolProbe == null) {
|
||||
arPoolProbe = new ArrayList<ARProbeInfo>();
|
||||
}
|
||||
return this.arPoolProbe;
|
||||
}
|
||||
|
||||
}
|
@ -1,246 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolRecord complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="poolRecordType" type="{http://schema.ultraservice.neustar.com/v01/}RecordType"/>
|
||||
* <element name="poolRecordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="forcedState" type="{http://schema.ultraservice.neustar.com/v01/}ForcedState"/>
|
||||
* <element name="probesEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
|
||||
* <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
|
||||
* <element name="allFail" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolRecord", propOrder = {
|
||||
"poolName",
|
||||
"description",
|
||||
"poolRecordType",
|
||||
"poolRecordValue",
|
||||
"forcedState",
|
||||
"probesEnabled",
|
||||
"weight",
|
||||
"allFail"
|
||||
})
|
||||
public class ARPoolRecord {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String poolName;
|
||||
protected String description;
|
||||
@XmlElement(required = true)
|
||||
protected RecordType poolRecordType;
|
||||
@XmlElement(required = true)
|
||||
protected String poolRecordValue;
|
||||
@XmlElement(required = true)
|
||||
protected ForcedState forcedState;
|
||||
protected boolean probesEnabled;
|
||||
protected Integer weight;
|
||||
protected Boolean allFail;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPoolName() {
|
||||
return poolName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPoolName(String value) {
|
||||
this.poolName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the description property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the description property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
this.description = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the poolRecordType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordType }
|
||||
*
|
||||
*/
|
||||
public RecordType getPoolRecordType() {
|
||||
return poolRecordType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolRecordType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordType }
|
||||
*
|
||||
*/
|
||||
public void setPoolRecordType(RecordType value) {
|
||||
this.poolRecordType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the poolRecordValue property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPoolRecordValue() {
|
||||
return poolRecordValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolRecordValue property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPoolRecordValue(String value) {
|
||||
this.poolRecordValue = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the forcedState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ForcedState }
|
||||
*
|
||||
*/
|
||||
public ForcedState getForcedState() {
|
||||
return forcedState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the forcedState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ForcedState }
|
||||
*
|
||||
*/
|
||||
public void setForcedState(ForcedState value) {
|
||||
this.forcedState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the probesEnabled property.
|
||||
*
|
||||
*/
|
||||
public boolean isProbesEnabled() {
|
||||
return probesEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the probesEnabled property.
|
||||
*
|
||||
*/
|
||||
public void setProbesEnabled(boolean value) {
|
||||
this.probesEnabled = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the weight property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public Integer getWeight() {
|
||||
return weight;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the weight property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Integer }
|
||||
*
|
||||
*/
|
||||
public void setWeight(Integer value) {
|
||||
this.weight = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the allFail property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isAllFail() {
|
||||
return allFail;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the allFail property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setAllFail(Boolean value) {
|
||||
this.allFail = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolRecordListKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolRecordListKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="configurationName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolRecordListKey", propOrder = {
|
||||
"poolName",
|
||||
"configurationName"
|
||||
})
|
||||
public class ARPoolRecordListKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String poolName;
|
||||
@XmlElement(required = true)
|
||||
protected String configurationName;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPoolName() {
|
||||
return poolName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPoolName(String value) {
|
||||
this.poolName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the configurationName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getConfigurationName() {
|
||||
return configurationName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the configurationName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setConfigurationName(String value) {
|
||||
this.configurationName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,67 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolRecords complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolRecords">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolRecord" type="{http://schema.ultraservice.neustar.com/v01/}PoolRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolRecords", propOrder = {
|
||||
"poolRecord"
|
||||
})
|
||||
public class ARPoolRecords {
|
||||
|
||||
protected List<PoolRecord> poolRecord;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolRecord property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the poolRecord property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPoolRecord().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link PoolRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PoolRecord> getPoolRecord() {
|
||||
if (poolRecord == null) {
|
||||
poolRecord = new ArrayList<PoolRecord>();
|
||||
}
|
||||
return this.poolRecord;
|
||||
}
|
||||
|
||||
}
|
@ -1,117 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolRecordsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolRecordsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="arPoolRecords" type="{http://schema.ultraservice.neustar.com/v01/}ARPoolRecords" minOccurs="0"/>
|
||||
* <element name="total" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="count" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolRecordsList", propOrder = {
|
||||
"arPoolRecords",
|
||||
"total",
|
||||
"offset",
|
||||
"count"
|
||||
})
|
||||
public class ARPoolRecordsList {
|
||||
|
||||
protected ARPoolRecords arPoolRecords;
|
||||
protected int total;
|
||||
protected int offset;
|
||||
protected int count;
|
||||
|
||||
/**
|
||||
* Gets the value of the arPoolRecords property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ARPoolRecords }
|
||||
*
|
||||
*/
|
||||
public ARPoolRecords getArPoolRecords() {
|
||||
return arPoolRecords;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the arPoolRecords property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ARPoolRecords }
|
||||
*
|
||||
*/
|
||||
public void setArPoolRecords(ARPoolRecords value) {
|
||||
this.arPoolRecords = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the total property.
|
||||
*
|
||||
*/
|
||||
public int getTotal() {
|
||||
return total;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the total property.
|
||||
*
|
||||
*/
|
||||
public void setTotal(int value) {
|
||||
this.total = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the offset property.
|
||||
*
|
||||
*/
|
||||
public int getOffset() {
|
||||
return offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the offset property.
|
||||
*
|
||||
*/
|
||||
public void setOffset(int value) {
|
||||
this.offset = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the count property.
|
||||
*
|
||||
*/
|
||||
public int getCount() {
|
||||
return count;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the count property.
|
||||
*
|
||||
*/
|
||||
public void setCount(int value) {
|
||||
this.count = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARPoolRuleKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARPoolRuleKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="poolKey" type="{http://schema.ultraservice.neustar.com/v01/}PoolKey"/>
|
||||
* <element name="ruleName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARPoolRuleKey", propOrder = {
|
||||
"poolKey",
|
||||
"ruleName"
|
||||
})
|
||||
public class ARPoolRuleKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected PoolKey poolKey;
|
||||
@XmlElement(required = true)
|
||||
protected String ruleName;
|
||||
|
||||
/**
|
||||
* Gets the value of the poolKey property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PoolKey }
|
||||
*
|
||||
*/
|
||||
public PoolKey getPoolKey() {
|
||||
return poolKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolKey property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PoolKey }
|
||||
*
|
||||
*/
|
||||
public void setPoolKey(PoolKey value) {
|
||||
this.poolKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the ruleName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRuleName() {
|
||||
return ruleName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ruleName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRuleName(String value) {
|
||||
this.ruleName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,213 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARProbeInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARProbeInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="probeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="probeType" type="{http://schema.ultraservice.neustar.com/v01/}ProbeTypeEnum" minOccurs="0"/>
|
||||
* <element name="probeLevel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="interval" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="regionThreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="regions" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="recordData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARProbeInfo", propOrder = {
|
||||
"probeName",
|
||||
"probeType",
|
||||
"probeLevel",
|
||||
"interval",
|
||||
"regionThreshold",
|
||||
"regions",
|
||||
"recordData"
|
||||
})
|
||||
public class ARProbeInfo {
|
||||
|
||||
protected String probeName;
|
||||
protected ProbeTypeEnum probeType;
|
||||
protected String probeLevel;
|
||||
protected int interval;
|
||||
protected int regionThreshold;
|
||||
protected List<String> regions;
|
||||
protected String recordData;
|
||||
|
||||
/**
|
||||
* Gets the value of the probeName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getProbeName() {
|
||||
return probeName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the probeName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setProbeName(String value) {
|
||||
this.probeName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the probeType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ProbeTypeEnum }
|
||||
*
|
||||
*/
|
||||
public ProbeTypeEnum getProbeType() {
|
||||
return probeType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the probeType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ProbeTypeEnum }
|
||||
*
|
||||
*/
|
||||
public void setProbeType(ProbeTypeEnum value) {
|
||||
this.probeType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the probeLevel property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getProbeLevel() {
|
||||
return probeLevel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the probeLevel property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setProbeLevel(String value) {
|
||||
this.probeLevel = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the interval property.
|
||||
*
|
||||
*/
|
||||
public int getInterval() {
|
||||
return interval;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the interval property.
|
||||
*
|
||||
*/
|
||||
public void setInterval(int value) {
|
||||
this.interval = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the regionThreshold property.
|
||||
*
|
||||
*/
|
||||
public int getRegionThreshold() {
|
||||
return regionThreshold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the regionThreshold property.
|
||||
*
|
||||
*/
|
||||
public void setRegionThreshold(int value) {
|
||||
this.regionThreshold = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the regions property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the regions property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRegions().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getRegions() {
|
||||
if (regions == null) {
|
||||
regions = new ArrayList<String>();
|
||||
}
|
||||
return this.regions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordData property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRecordData() {
|
||||
return recordData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordData property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRecordData(String value) {
|
||||
this.recordData = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARStatusEnum.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ARStatusEnum">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="OK"/>
|
||||
* <enumeration value="FAIL"/>
|
||||
* <enumeration value="MANUAL"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ARStatusEnum")
|
||||
@XmlEnum
|
||||
public enum ARStatusEnum {
|
||||
|
||||
OK,
|
||||
FAIL,
|
||||
MANUAL;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static ARStatusEnum fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ARecord complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ARecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="pointsTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ARecord")
|
||||
public class ARecord {
|
||||
|
||||
@XmlAttribute(name = "pointsTo", required = true)
|
||||
protected String pointsTo;
|
||||
|
||||
/**
|
||||
* Gets the value of the pointsTo property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPointsTo() {
|
||||
return pointsTo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the pointsTo property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPointsTo(String value) {
|
||||
this.pointsTo = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,195 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountAddressInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountAddressInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="Address1" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Address2" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="City" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="State" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="ZipCode" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="Country" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountAddressInfo")
|
||||
public class AccountAddressInfo {
|
||||
|
||||
@XmlAttribute(name = "Address1")
|
||||
protected String address1;
|
||||
@XmlAttribute(name = "Address2")
|
||||
protected String address2;
|
||||
@XmlAttribute(name = "City")
|
||||
protected String city;
|
||||
@XmlAttribute(name = "State")
|
||||
protected String state;
|
||||
@XmlAttribute(name = "ZipCode")
|
||||
protected String zipCode;
|
||||
@XmlAttribute(name = "Country")
|
||||
protected String country;
|
||||
|
||||
/**
|
||||
* Gets the value of the address1 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAddress1() {
|
||||
return address1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the address1 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAddress1(String value) {
|
||||
this.address1 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the address2 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAddress2() {
|
||||
return address2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the address2 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAddress2(String value) {
|
||||
this.address2 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the city property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCity() {
|
||||
return city;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the city property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCity(String value) {
|
||||
this.city = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the state property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the state property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setState(String value) {
|
||||
this.state = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zipCode property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZipCode() {
|
||||
return zipCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zipCode property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZipCode(String value) {
|
||||
this.zipCode = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the country property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCountry() {
|
||||
return country;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the country property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCountry(String value) {
|
||||
this.country = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,249 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountDetailsData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountDetailsData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="accountID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderUserName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="primaryUserUserName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="numberOfUsers" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="numberOfUserGroups" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountDetailsData")
|
||||
public class AccountDetailsData {
|
||||
|
||||
@XmlAttribute(name = "accountID", required = true)
|
||||
protected String accountID;
|
||||
@XmlAttribute(name = "accountName", required = true)
|
||||
protected String accountName;
|
||||
@XmlAttribute(name = "accountHolderUserName", required = true)
|
||||
protected String accountHolderUserName;
|
||||
@XmlAttribute(name = "primaryUserUserName", required = true)
|
||||
protected String primaryUserUserName;
|
||||
@XmlAttribute(name = "numberOfUsers", required = true)
|
||||
protected String numberOfUsers;
|
||||
@XmlAttribute(name = "numberOfUserGroups", required = true)
|
||||
protected String numberOfUserGroups;
|
||||
@XmlAttribute(name = "accountHolderType", required = true)
|
||||
protected String accountHolderType;
|
||||
@XmlAttribute(name = "accountType", required = true)
|
||||
protected String accountType;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountID() {
|
||||
return accountID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountID(String value) {
|
||||
this.accountID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderUserName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderUserName() {
|
||||
return accountHolderUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderUserName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderUserName(String value) {
|
||||
this.accountHolderUserName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the primaryUserUserName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrimaryUserUserName() {
|
||||
return primaryUserUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the primaryUserUserName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrimaryUserUserName(String value) {
|
||||
this.primaryUserUserName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the numberOfUsers property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNumberOfUsers() {
|
||||
return numberOfUsers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the numberOfUsers property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNumberOfUsers(String value) {
|
||||
this.numberOfUsers = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the numberOfUserGroups property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNumberOfUserGroups() {
|
||||
return numberOfUserGroups;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the numberOfUserGroups property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNumberOfUserGroups(String value) {
|
||||
this.numberOfUserGroups = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderType() {
|
||||
return accountHolderType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderType(String value) {
|
||||
this.accountHolderType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountType() {
|
||||
return accountType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountType(String value) {
|
||||
this.accountType = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountDetailsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountDetailsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AccountDetailsData" type="{http://schema.ultraservice.neustar.com/v01/}AccountDetailsData" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountDetailsList", propOrder = {
|
||||
"accountDetailsData"
|
||||
})
|
||||
public class AccountDetailsList {
|
||||
|
||||
@XmlElement(name = "AccountDetailsData", required = true)
|
||||
protected List<AccountDetailsData> accountDetailsData;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountDetailsData property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the accountDetailsData property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAccountDetailsData().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AccountDetailsData }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AccountDetailsData> getAccountDetailsData() {
|
||||
if (accountDetailsData == null) {
|
||||
accountDetailsData = new ArrayList<AccountDetailsData>();
|
||||
}
|
||||
return this.accountDetailsData;
|
||||
}
|
||||
|
||||
}
|
@ -1,600 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountInfoData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountInfoData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="accountID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountStatus" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="totalUsers" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="created" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgAccountHolderUserName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserUserName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="indAccountHolderAndPrimaryUserName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderAddress" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderAddress2" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderCity" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderState" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderZip" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountHolderCountry" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserAddress" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserAddress2" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserCity" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserState" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserZip" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="orgPrimaryUserCountry" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountInfoData")
|
||||
public class AccountInfoData {
|
||||
|
||||
@XmlAttribute(name = "accountID", required = true)
|
||||
protected String accountID;
|
||||
@XmlAttribute(name = "accountName", required = true)
|
||||
protected String accountName;
|
||||
@XmlAttribute(name = "accountStatus", required = true)
|
||||
protected String accountStatus;
|
||||
@XmlAttribute(name = "totalUsers", required = true)
|
||||
protected String totalUsers;
|
||||
@XmlAttribute(name = "created", required = true)
|
||||
protected String created;
|
||||
@XmlAttribute(name = "orgAccountHolderUserName", required = true)
|
||||
protected String orgAccountHolderUserName;
|
||||
@XmlAttribute(name = "orgPrimaryUserUserName", required = true)
|
||||
protected String orgPrimaryUserUserName;
|
||||
@XmlAttribute(name = "accountType", required = true)
|
||||
protected String accountType;
|
||||
@XmlAttribute(name = "indAccountHolderAndPrimaryUserName", required = true)
|
||||
protected String indAccountHolderAndPrimaryUserName;
|
||||
@XmlAttribute(name = "accountHolderAddress", required = true)
|
||||
protected String accountHolderAddress;
|
||||
@XmlAttribute(name = "accountHolderAddress2", required = true)
|
||||
protected String accountHolderAddress2;
|
||||
@XmlAttribute(name = "accountHolderCity", required = true)
|
||||
protected String accountHolderCity;
|
||||
@XmlAttribute(name = "accountHolderState", required = true)
|
||||
protected String accountHolderState;
|
||||
@XmlAttribute(name = "accountHolderZip", required = true)
|
||||
protected String accountHolderZip;
|
||||
@XmlAttribute(name = "accountHolderCountry", required = true)
|
||||
protected String accountHolderCountry;
|
||||
@XmlAttribute(name = "orgPrimaryUserAddress", required = true)
|
||||
protected String orgPrimaryUserAddress;
|
||||
@XmlAttribute(name = "orgPrimaryUserAddress2", required = true)
|
||||
protected String orgPrimaryUserAddress2;
|
||||
@XmlAttribute(name = "orgPrimaryUserCity", required = true)
|
||||
protected String orgPrimaryUserCity;
|
||||
@XmlAttribute(name = "orgPrimaryUserState", required = true)
|
||||
protected String orgPrimaryUserState;
|
||||
@XmlAttribute(name = "orgPrimaryUserZip", required = true)
|
||||
protected String orgPrimaryUserZip;
|
||||
@XmlAttribute(name = "orgPrimaryUserCountry", required = true)
|
||||
protected String orgPrimaryUserCountry;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountID() {
|
||||
return accountID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountID(String value) {
|
||||
this.accountID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountStatus() {
|
||||
return accountStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountStatus(String value) {
|
||||
this.accountStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the totalUsers property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTotalUsers() {
|
||||
return totalUsers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the totalUsers property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTotalUsers(String value) {
|
||||
this.totalUsers = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the created property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCreated() {
|
||||
return created;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the created property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCreated(String value) {
|
||||
this.created = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgAccountHolderUserName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgAccountHolderUserName() {
|
||||
return orgAccountHolderUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgAccountHolderUserName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgAccountHolderUserName(String value) {
|
||||
this.orgAccountHolderUserName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserUserName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserUserName() {
|
||||
return orgPrimaryUserUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserUserName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserUserName(String value) {
|
||||
this.orgPrimaryUserUserName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountType() {
|
||||
return accountType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountType(String value) {
|
||||
this.accountType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the indAccountHolderAndPrimaryUserName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIndAccountHolderAndPrimaryUserName() {
|
||||
return indAccountHolderAndPrimaryUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the indAccountHolderAndPrimaryUserName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIndAccountHolderAndPrimaryUserName(String value) {
|
||||
this.indAccountHolderAndPrimaryUserName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderAddress property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderAddress() {
|
||||
return accountHolderAddress;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderAddress property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderAddress(String value) {
|
||||
this.accountHolderAddress = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderAddress2 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderAddress2() {
|
||||
return accountHolderAddress2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderAddress2 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderAddress2(String value) {
|
||||
this.accountHolderAddress2 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderCity property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderCity() {
|
||||
return accountHolderCity;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderCity property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderCity(String value) {
|
||||
this.accountHolderCity = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderState() {
|
||||
return accountHolderState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderState(String value) {
|
||||
this.accountHolderState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderZip property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderZip() {
|
||||
return accountHolderZip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderZip property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderZip(String value) {
|
||||
this.accountHolderZip = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountHolderCountry property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountHolderCountry() {
|
||||
return accountHolderCountry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountHolderCountry property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountHolderCountry(String value) {
|
||||
this.accountHolderCountry = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserAddress property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserAddress() {
|
||||
return orgPrimaryUserAddress;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserAddress property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserAddress(String value) {
|
||||
this.orgPrimaryUserAddress = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserAddress2 property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserAddress2() {
|
||||
return orgPrimaryUserAddress2;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserAddress2 property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserAddress2(String value) {
|
||||
this.orgPrimaryUserAddress2 = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserCity property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserCity() {
|
||||
return orgPrimaryUserCity;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserCity property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserCity(String value) {
|
||||
this.orgPrimaryUserCity = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserState() {
|
||||
return orgPrimaryUserState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserState(String value) {
|
||||
this.orgPrimaryUserState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserZip property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserZip() {
|
||||
return orgPrimaryUserZip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserZip property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserZip(String value) {
|
||||
this.orgPrimaryUserZip = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgPrimaryUserCountry property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgPrimaryUserCountry() {
|
||||
return orgPrimaryUserCountry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the orgPrimaryUserCountry property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgPrimaryUserCountry(String value) {
|
||||
this.orgPrimaryUserCountry = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,133 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountLevelGroup complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountLevelGroup">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="GroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="GroupName" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="RecordsCount" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
|
||||
* <attribute name="GroupType" type="{http://schema.ultraservice.neustar.com/v01/}DirPoolType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountLevelGroup")
|
||||
public class AccountLevelGroup {
|
||||
|
||||
@XmlAttribute(name = "GroupId")
|
||||
protected String groupId;
|
||||
@XmlAttribute(name = "GroupName")
|
||||
protected String groupName;
|
||||
@XmlAttribute(name = "RecordsCount", required = true)
|
||||
protected int recordsCount;
|
||||
@XmlAttribute(name = "GroupType")
|
||||
protected DirPoolType groupType;
|
||||
|
||||
/**
|
||||
* Gets the value of the groupId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGroupId() {
|
||||
return groupId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the groupId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGroupId(String value) {
|
||||
this.groupId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the groupName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGroupName() {
|
||||
return groupName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the groupName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGroupName(String value) {
|
||||
this.groupName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordsCount property.
|
||||
*
|
||||
*/
|
||||
public int getRecordsCount() {
|
||||
return recordsCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordsCount property.
|
||||
*
|
||||
*/
|
||||
public void setRecordsCount(int value) {
|
||||
this.recordsCount = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the groupType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DirPoolType }
|
||||
*
|
||||
*/
|
||||
public DirPoolType getGroupType() {
|
||||
return groupType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the groupType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DirPoolType }
|
||||
*
|
||||
*/
|
||||
public void setGroupType(DirPoolType value) {
|
||||
this.groupType = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountLevelGroupsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountLevelGroupsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AccountLevelGroups" type="{http://schema.ultraservice.neustar.com/v01/}AccountLevelGroup" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountLevelGroupsList", propOrder = {
|
||||
"accountLevelGroups"
|
||||
})
|
||||
public class AccountLevelGroupsList {
|
||||
|
||||
@XmlElement(name = "AccountLevelGroups", required = true)
|
||||
protected List<AccountLevelGroup> accountLevelGroups;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountLevelGroups property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the accountLevelGroups property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAccountLevelGroups().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AccountLevelGroup }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AccountLevelGroup> getAccountLevelGroups() {
|
||||
if (accountLevelGroups == null) {
|
||||
accountLevelGroups = new ArrayList<AccountLevelGroup>();
|
||||
}
|
||||
return this.accountLevelGroups;
|
||||
}
|
||||
|
||||
}
|
@ -1,141 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountLevelNotificationsData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountLevelNotificationsData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="accountName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountNotificationType" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountStatus" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="frequency" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountLevelNotificationsData")
|
||||
public class AccountLevelNotificationsData {
|
||||
|
||||
@XmlAttribute(name = "accountName", required = true)
|
||||
protected String accountName;
|
||||
@XmlAttribute(name = "accountNotificationType")
|
||||
protected String accountNotificationType;
|
||||
@XmlAttribute(name = "accountStatus")
|
||||
protected String accountStatus;
|
||||
@XmlAttribute(name = "frequency")
|
||||
protected String frequency;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountNotificationType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountNotificationType() {
|
||||
return accountNotificationType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountNotificationType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountNotificationType(String value) {
|
||||
this.accountNotificationType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountStatus() {
|
||||
return accountStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountStatus(String value) {
|
||||
this.accountStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the frequency property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFrequency() {
|
||||
return frequency;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the frequency property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFrequency(String value) {
|
||||
this.frequency = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountLevelNotificationsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountLevelNotificationsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AccountLevelNotificationsData" type="{http://schema.ultraservice.neustar.com/v01/}AccountLevelNotificationsData" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountLevelNotificationsList", propOrder = {
|
||||
"accountLevelNotificationsData"
|
||||
})
|
||||
public class AccountLevelNotificationsList {
|
||||
|
||||
@XmlElement(name = "AccountLevelNotificationsData", required = true)
|
||||
protected List<AccountLevelNotificationsData> accountLevelNotificationsData;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountLevelNotificationsData property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the accountLevelNotificationsData property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAccountLevelNotificationsData().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AccountLevelNotificationsData }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AccountLevelNotificationsData> getAccountLevelNotificationsData() {
|
||||
if (accountLevelNotificationsData == null) {
|
||||
accountLevelNotificationsData = new ArrayList<AccountLevelNotificationsData>();
|
||||
}
|
||||
return this.accountLevelNotificationsData;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountPreferenceDetail complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountPreferenceDetail">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ExternalValues" type="{http://schema.ultraservice.neustar.com/v01/}ExternalValues"/>
|
||||
* </sequence>
|
||||
* <attribute name="RecordTypeTTL" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountPreferenceDetail", propOrder = {
|
||||
"externalValues"
|
||||
})
|
||||
public class AccountPreferenceDetail {
|
||||
|
||||
@XmlElement(name = "ExternalValues", required = true)
|
||||
protected ExternalValues externalValues;
|
||||
@XmlAttribute(name = "RecordTypeTTL", required = true)
|
||||
protected String recordTypeTTL;
|
||||
|
||||
/**
|
||||
* Gets the value of the externalValues property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ExternalValues }
|
||||
*
|
||||
*/
|
||||
public ExternalValues getExternalValues() {
|
||||
return externalValues;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the externalValues property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ExternalValues }
|
||||
*
|
||||
*/
|
||||
public void setExternalValues(ExternalValues value) {
|
||||
this.externalValues = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordTypeTTL property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRecordTypeTTL() {
|
||||
return recordTypeTTL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordTypeTTL property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRecordTypeTTL(String value) {
|
||||
this.recordTypeTTL = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AccountPreferencesList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountPreferencesList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AccountPreferenceDetail" type="{http://schema.ultraservice.neustar.com/v01/}AccountPreferenceDetail" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountPreferencesList", propOrder = {
|
||||
"accountPreferenceDetail"
|
||||
})
|
||||
public class AccountPreferencesList {
|
||||
|
||||
@XmlElement(name = "AccountPreferenceDetail", required = true)
|
||||
protected List<AccountPreferenceDetail> accountPreferenceDetail;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountPreferenceDetail property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the accountPreferenceDetail property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAccountPreferenceDetail().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AccountPreferenceDetail }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AccountPreferenceDetail> getAccountPreferenceDetail() {
|
||||
if (accountPreferenceDetail == null) {
|
||||
accountPreferenceDetail = new ArrayList<AccountPreferenceDetail>();
|
||||
}
|
||||
return this.accountPreferenceDetail;
|
||||
}
|
||||
|
||||
}
|
@ -1,114 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AcctToPoolGroupConversionDetails complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AcctToPoolGroupConversionDetails">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="accountLevelGroupId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="newGroupName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="dirPoolRecordId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AcctToPoolGroupConversionDetails")
|
||||
public class AcctToPoolGroupConversionDetails {
|
||||
|
||||
@XmlAttribute(name = "accountLevelGroupId", required = true)
|
||||
protected String accountLevelGroupId;
|
||||
@XmlAttribute(name = "newGroupName", required = true)
|
||||
protected String newGroupName;
|
||||
@XmlAttribute(name = "dirPoolRecordId", required = true)
|
||||
protected String dirPoolRecordId;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountLevelGroupId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountLevelGroupId() {
|
||||
return accountLevelGroupId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountLevelGroupId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountLevelGroupId(String value) {
|
||||
this.accountLevelGroupId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newGroupName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNewGroupName() {
|
||||
return newGroupName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newGroupName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNewGroupName(String value) {
|
||||
this.newGroupName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dirPoolRecordId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDirPoolRecordId() {
|
||||
return dirPoolRecordId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dirPoolRecordId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDirPoolRecordId(String value) {
|
||||
this.dirPoolRecordId = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,198 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddDirectionalPoolData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddDirectionalPoolData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DirectionalRecordData" type="{http://schema.ultraservice.neustar.com/v01/}DirectionalRecordData"/>
|
||||
* </sequence>
|
||||
* <attribute name="dirPoolType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}DirPoolType" />
|
||||
* <attribute name="poolRecordType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}DirPoolRecordType" />
|
||||
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="zoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="hostName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddDirectionalPoolData", propOrder = {
|
||||
"directionalRecordData"
|
||||
})
|
||||
public class AddDirectionalPoolData {
|
||||
|
||||
@XmlElement(name = "DirectionalRecordData", required = true, nillable = true)
|
||||
protected DirectionalRecordData directionalRecordData;
|
||||
@XmlAttribute(name = "dirPoolType", required = true)
|
||||
protected DirPoolType dirPoolType;
|
||||
@XmlAttribute(name = "poolRecordType", required = true)
|
||||
protected DirPoolRecordType poolRecordType;
|
||||
@XmlAttribute(name = "description")
|
||||
protected String description;
|
||||
@XmlAttribute(name = "zoneName", required = true)
|
||||
protected String zoneName;
|
||||
@XmlAttribute(name = "hostName", required = true)
|
||||
protected String hostName;
|
||||
|
||||
/**
|
||||
* Gets the value of the directionalRecordData property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DirectionalRecordData }
|
||||
*
|
||||
*/
|
||||
public DirectionalRecordData getDirectionalRecordData() {
|
||||
return directionalRecordData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the directionalRecordData property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DirectionalRecordData }
|
||||
*
|
||||
*/
|
||||
public void setDirectionalRecordData(DirectionalRecordData value) {
|
||||
this.directionalRecordData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the dirPoolType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DirPoolType }
|
||||
*
|
||||
*/
|
||||
public DirPoolType getDirPoolType() {
|
||||
return dirPoolType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the dirPoolType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DirPoolType }
|
||||
*
|
||||
*/
|
||||
public void setDirPoolType(DirPoolType value) {
|
||||
this.dirPoolType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the poolRecordType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DirPoolRecordType }
|
||||
*
|
||||
*/
|
||||
public DirPoolRecordType getPoolRecordType() {
|
||||
return poolRecordType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the poolRecordType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DirPoolRecordType }
|
||||
*
|
||||
*/
|
||||
public void setPoolRecordType(DirPoolRecordType value) {
|
||||
this.poolRecordType = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the description property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the description property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
this.description = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zoneName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZoneName() {
|
||||
return zoneName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zoneName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZoneName(String value) {
|
||||
this.zoneName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the hostName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getHostName() {
|
||||
return hostName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the hostName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setHostName(String value) {
|
||||
this.hostName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,192 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddDirectionalRecordData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddDirectionalRecordData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DirectionalRecordConfiguration" type="{http://schema.ultraservice.neustar.com/v01/}DirectionalDNSRecord"/>
|
||||
* <element name="GeolocationGroupData" type="{http://schema.ultraservice.neustar.com/v01/}GeolocationGroupData"/>
|
||||
* <element name="SourceIPGroupData" type="{http://schema.ultraservice.neustar.com/v01/}SourceIPGroupData"/>
|
||||
* <element name="forceOverlapTransfer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* <attribute name="directionalPoolId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="createAllNonConfiguredGrp" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddDirectionalRecordData", propOrder = {
|
||||
"directionalRecordConfiguration",
|
||||
"geolocationGroupData",
|
||||
"sourceIPGroupData",
|
||||
"forceOverlapTransfer"
|
||||
})
|
||||
public class AddDirectionalRecordData {
|
||||
|
||||
@XmlElement(name = "DirectionalRecordConfiguration", required = true, nillable = true)
|
||||
protected DirectionalDNSRecord directionalRecordConfiguration;
|
||||
@XmlElement(name = "GeolocationGroupData", required = true, nillable = true)
|
||||
protected GeolocationGroupData geolocationGroupData;
|
||||
@XmlElement(name = "SourceIPGroupData", required = true, nillable = true)
|
||||
protected SourceIPGroupData sourceIPGroupData;
|
||||
protected Boolean forceOverlapTransfer;
|
||||
@XmlAttribute(name = "directionalPoolId", required = true)
|
||||
protected String directionalPoolId;
|
||||
@XmlAttribute(name = "createAllNonConfiguredGrp", required = true)
|
||||
protected boolean createAllNonConfiguredGrp;
|
||||
|
||||
/**
|
||||
* Gets the value of the directionalRecordConfiguration property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DirectionalDNSRecord }
|
||||
*
|
||||
*/
|
||||
public DirectionalDNSRecord getDirectionalRecordConfiguration() {
|
||||
return directionalRecordConfiguration;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the directionalRecordConfiguration property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DirectionalDNSRecord }
|
||||
*
|
||||
*/
|
||||
public void setDirectionalRecordConfiguration(DirectionalDNSRecord value) {
|
||||
this.directionalRecordConfiguration = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the geolocationGroupData property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GeolocationGroupData }
|
||||
*
|
||||
*/
|
||||
public GeolocationGroupData getGeolocationGroupData() {
|
||||
return geolocationGroupData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the geolocationGroupData property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GeolocationGroupData }
|
||||
*
|
||||
*/
|
||||
public void setGeolocationGroupData(GeolocationGroupData value) {
|
||||
this.geolocationGroupData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the sourceIPGroupData property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SourceIPGroupData }
|
||||
*
|
||||
*/
|
||||
public SourceIPGroupData getSourceIPGroupData() {
|
||||
return sourceIPGroupData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the sourceIPGroupData property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SourceIPGroupData }
|
||||
*
|
||||
*/
|
||||
public void setSourceIPGroupData(SourceIPGroupData value) {
|
||||
this.sourceIPGroupData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the forceOverlapTransfer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isForceOverlapTransfer() {
|
||||
return forceOverlapTransfer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the forceOverlapTransfer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setForceOverlapTransfer(Boolean value) {
|
||||
this.forceOverlapTransfer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the directionalPoolId property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDirectionalPoolId() {
|
||||
return directionalPoolId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the directionalPoolId property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDirectionalPoolId(String value) {
|
||||
this.directionalPoolId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the createAllNonConfiguredGrp property.
|
||||
*
|
||||
*/
|
||||
public boolean isCreateAllNonConfiguredGrp() {
|
||||
return createAllNonConfiguredGrp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the createAllNonConfiguredGrp property.
|
||||
*
|
||||
*/
|
||||
public void setCreateAllNonConfiguredGrp(boolean value) {
|
||||
this.createAllNonConfiguredGrp = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,173 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntry complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntry">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="addressBookEntryKey" type="{http://schema.ultraservice.neustar.com/v01/}AddressBookEntryKey"/>
|
||||
* <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntry", propOrder = {
|
||||
"addressBookEntryKey",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"email",
|
||||
"phone"
|
||||
})
|
||||
public class AddressBookEntry {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected AddressBookEntryKey addressBookEntryKey;
|
||||
@XmlElement(required = true)
|
||||
protected String firstName;
|
||||
@XmlElement(required = true)
|
||||
protected String lastName;
|
||||
@XmlElement(required = true)
|
||||
protected String email;
|
||||
protected String phone;
|
||||
|
||||
/**
|
||||
* Gets the value of the addressBookEntryKey property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AddressBookEntryKey }
|
||||
*
|
||||
*/
|
||||
public AddressBookEntryKey getAddressBookEntryKey() {
|
||||
return addressBookEntryKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the addressBookEntryKey property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AddressBookEntryKey }
|
||||
*
|
||||
*/
|
||||
public void setAddressBookEntryKey(AddressBookEntryKey value) {
|
||||
this.addressBookEntryKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the firstName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFirstName() {
|
||||
return firstName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the firstName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFirstName(String value) {
|
||||
this.firstName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastName() {
|
||||
return lastName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastName(String value) {
|
||||
this.lastName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the email property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the email property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEmail(String value) {
|
||||
this.email = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the phone property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the phone property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPhone(String value) {
|
||||
this.phone = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,173 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryCreate complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryCreate">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="addressBookEntryKey" type="{http://schema.ultraservice.neustar.com/v01/}AddressBookEntryCreateKey"/>
|
||||
* <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryCreate", propOrder = {
|
||||
"addressBookEntryKey",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"email",
|
||||
"phone"
|
||||
})
|
||||
public class AddressBookEntryCreate {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected AddressBookEntryCreateKey addressBookEntryKey;
|
||||
@XmlElement(required = true)
|
||||
protected String firstName;
|
||||
@XmlElement(required = true)
|
||||
protected String lastName;
|
||||
@XmlElement(required = true)
|
||||
protected String email;
|
||||
protected String phone;
|
||||
|
||||
/**
|
||||
* Gets the value of the addressBookEntryKey property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AddressBookEntryCreateKey }
|
||||
*
|
||||
*/
|
||||
public AddressBookEntryCreateKey getAddressBookEntryKey() {
|
||||
return addressBookEntryKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the addressBookEntryKey property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AddressBookEntryCreateKey }
|
||||
*
|
||||
*/
|
||||
public void setAddressBookEntryKey(AddressBookEntryCreateKey value) {
|
||||
this.addressBookEntryKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the firstName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFirstName() {
|
||||
return firstName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the firstName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFirstName(String value) {
|
||||
this.firstName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastName() {
|
||||
return lastName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastName(String value) {
|
||||
this.lastName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the email property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the email property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEmail(String value) {
|
||||
this.email = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the phone property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the phone property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPhone(String value) {
|
||||
this.phone = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryCreateKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryCreateKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="accountName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryCreateKey", propOrder = {
|
||||
"accountName"
|
||||
})
|
||||
public class AddressBookEntryCreateKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String accountName;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,257 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryGet complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryGet">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="entryLabel" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="accountName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="phone" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
|
||||
* <element name="created" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryGet", propOrder = {
|
||||
"entryLabel",
|
||||
"accountName",
|
||||
"firstName",
|
||||
"lastName",
|
||||
"email",
|
||||
"phone",
|
||||
"created",
|
||||
"lastModified"
|
||||
})
|
||||
public class AddressBookEntryGet {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String entryLabel;
|
||||
@XmlElement(required = true)
|
||||
protected String accountName;
|
||||
@XmlElement(required = true)
|
||||
protected String firstName;
|
||||
@XmlElement(required = true)
|
||||
protected String lastName;
|
||||
@XmlElement(required = true)
|
||||
protected String email;
|
||||
protected String phone;
|
||||
@XmlElement(required = true)
|
||||
protected String created;
|
||||
@XmlElement(required = true)
|
||||
protected String lastModified;
|
||||
|
||||
/**
|
||||
* Gets the value of the entryLabel property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEntryLabel() {
|
||||
return entryLabel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the entryLabel property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEntryLabel(String value) {
|
||||
this.entryLabel = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the firstName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFirstName() {
|
||||
return firstName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the firstName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFirstName(String value) {
|
||||
this.firstName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastName() {
|
||||
return lastName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastName(String value) {
|
||||
this.lastName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the email property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEmail() {
|
||||
return email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the email property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEmail(String value) {
|
||||
this.email = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the phone property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPhone() {
|
||||
return phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the phone property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPhone(String value) {
|
||||
this.phone = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the created property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCreated() {
|
||||
return created;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the created property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCreated(String value) {
|
||||
this.created = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastModified property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastModified() {
|
||||
return lastModified;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastModified property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastModified(String value) {
|
||||
this.lastModified = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="accountName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="entryLabel" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryKey", propOrder = {
|
||||
"accountName",
|
||||
"entryLabel"
|
||||
})
|
||||
public class AddressBookEntryKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String accountName;
|
||||
@XmlElement(required = true)
|
||||
protected String entryLabel;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the entryLabel property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEntryLabel() {
|
||||
return entryLabel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the entryLabel property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEntryLabel(String value) {
|
||||
this.entryLabel = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryKeys complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryKeys">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="addressBookEntryKey" type="{http://schema.ultraservice.neustar.com/v01/}AddressBookEntryKey" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryKeys", propOrder = {
|
||||
"addressBookEntryKey"
|
||||
})
|
||||
public class AddressBookEntryKeys {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected List<AddressBookEntryKey> addressBookEntryKey;
|
||||
|
||||
/**
|
||||
* Gets the value of the addressBookEntryKey property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the addressBookEntryKey property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAddressBookEntryKey().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AddressBookEntryKey }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AddressBookEntryKey> getAddressBookEntryKey() {
|
||||
if (addressBookEntryKey == null) {
|
||||
addressBookEntryKey = new ArrayList<AddressBookEntryKey>();
|
||||
}
|
||||
return this.addressBookEntryKey;
|
||||
}
|
||||
|
||||
}
|
@ -1,105 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="addressBookEntries" type="{http://schema.ultraservice.neustar.com/v01/}AddressBookEntryGet" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="recordCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryList", propOrder = {
|
||||
"addressBookEntries",
|
||||
"recordCount",
|
||||
"startIndex"
|
||||
})
|
||||
public class AddressBookEntryList {
|
||||
|
||||
protected List<AddressBookEntryGet> addressBookEntries;
|
||||
protected int recordCount;
|
||||
protected int startIndex;
|
||||
|
||||
/**
|
||||
* Gets the value of the addressBookEntries property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the addressBookEntries property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAddressBookEntries().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AddressBookEntryGet }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AddressBookEntryGet> getAddressBookEntries() {
|
||||
if (addressBookEntries == null) {
|
||||
addressBookEntries = new ArrayList<AddressBookEntryGet>();
|
||||
}
|
||||
return this.addressBookEntries;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordCount property.
|
||||
*
|
||||
*/
|
||||
public int getRecordCount() {
|
||||
return recordCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordCount property.
|
||||
*
|
||||
*/
|
||||
public void setRecordCount(int value) {
|
||||
this.recordCount = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startIndex property.
|
||||
*
|
||||
*/
|
||||
public int getStartIndex() {
|
||||
return startIndex;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the startIndex property.
|
||||
*
|
||||
*/
|
||||
public void setStartIndex(int value) {
|
||||
this.startIndex = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,89 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AddressBookEntryListKey complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressBookEntryListKey">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="accountName" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="entryListParams" type="{http://schema.ultraservice.neustar.com/v01/}EntryListParams" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressBookEntryListKey", propOrder = {
|
||||
"accountName",
|
||||
"entryListParams"
|
||||
})
|
||||
public class AddressBookEntryListKey {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected String accountName;
|
||||
protected EntryListParams entryListParams;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the entryListParams property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link EntryListParams }
|
||||
*
|
||||
*/
|
||||
public EntryListParams getEntryListParams() {
|
||||
return entryListParams;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the entryListParams property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link EntryListParams }
|
||||
*
|
||||
*/
|
||||
public void setEntryListParams(EntryListParams value) {
|
||||
this.entryListParams = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AgentsRunningProbeList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AgentsRunningProbeList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="regionAndAgent" type="{http://schema.ultraservice.neustar.com/v01/}RegionAndAgent" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AgentsRunningProbeList", propOrder = {
|
||||
"regionAndAgent"
|
||||
})
|
||||
public class AgentsRunningProbeList {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected List<RegionAndAgent> regionAndAgent;
|
||||
|
||||
/**
|
||||
* Gets the value of the regionAndAgent property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the regionAndAgent property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRegionAndAgent().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link RegionAndAgent }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<RegionAndAgent> getRegionAndAgent() {
|
||||
if (regionAndAgent == null) {
|
||||
regionAndAgent = new ArrayList<RegionAndAgent>();
|
||||
}
|
||||
return this.regionAndAgent;
|
||||
}
|
||||
|
||||
}
|
@ -1,117 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertAllFailDetails complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertAllFailDetails">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="oldRecordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState"/>
|
||||
* <element name="newRecordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState"/>
|
||||
* <element name="allFailRecords" type="{http://schema.ultraservice.neustar.com/v01/}AlertAllFailRecordsList" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertAllFailDetails", propOrder = {
|
||||
"oldRecordState",
|
||||
"newRecordState",
|
||||
"allFailRecords"
|
||||
})
|
||||
public class AlertAllFailDetails {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected RecordState oldRecordState;
|
||||
@XmlElement(required = true)
|
||||
protected RecordState newRecordState;
|
||||
protected AlertAllFailRecordsList allFailRecords;
|
||||
|
||||
/**
|
||||
* Gets the value of the oldRecordState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public RecordState getOldRecordState() {
|
||||
return oldRecordState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the oldRecordState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public void setOldRecordState(RecordState value) {
|
||||
this.oldRecordState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newRecordState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public RecordState getNewRecordState() {
|
||||
return newRecordState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newRecordState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public void setNewRecordState(RecordState value) {
|
||||
this.newRecordState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the allFailRecords property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AlertAllFailRecordsList }
|
||||
*
|
||||
*/
|
||||
public AlertAllFailRecordsList getAllFailRecords() {
|
||||
return allFailRecords;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the allFailRecords property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AlertAllFailRecordsList }
|
||||
*
|
||||
*/
|
||||
public void setAllFailRecords(AlertAllFailRecordsList value) {
|
||||
this.allFailRecords = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertAllFailRecordsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertAllFailRecordsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="record" type="{http://schema.ultraservice.neustar.com/v01/}AlertRecord" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertAllFailRecordsList", propOrder = {
|
||||
"record"
|
||||
})
|
||||
public class AlertAllFailRecordsList {
|
||||
|
||||
@XmlElement(nillable = true)
|
||||
protected List<AlertRecord> record;
|
||||
|
||||
/**
|
||||
* Gets the value of the record property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the record property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRecord().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AlertRecord }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AlertRecord> getRecord() {
|
||||
if (record == null) {
|
||||
record = new ArrayList<AlertRecord>();
|
||||
}
|
||||
return this.record;
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertPoolDetails complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertPoolDetails">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="hostName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="configurationName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertPoolDetails")
|
||||
public class AlertPoolDetails {
|
||||
|
||||
@XmlAttribute(name = "hostName", required = true)
|
||||
protected String hostName;
|
||||
@XmlAttribute(name = "configurationName", required = true)
|
||||
protected String configurationName;
|
||||
|
||||
/**
|
||||
* Gets the value of the hostName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getHostName() {
|
||||
return hostName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the hostName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setHostName(String value) {
|
||||
this.hostName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the configurationName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getConfigurationName() {
|
||||
return configurationName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the configurationName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setConfigurationName(String value) {
|
||||
this.configurationName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertPoolStatus complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertPoolStatus">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="oldStatus" type="{http://schema.ultraservice.neustar.com/v01/}StatusEnum"/>
|
||||
* <element name="newStatus" type="{http://schema.ultraservice.neustar.com/v01/}StatusEnum"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertPoolStatus", propOrder = {
|
||||
"oldStatus",
|
||||
"newStatus"
|
||||
})
|
||||
public class AlertPoolStatus {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected StatusEnum oldStatus;
|
||||
@XmlElement(required = true)
|
||||
protected StatusEnum newStatus;
|
||||
|
||||
/**
|
||||
* Gets the value of the oldStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link StatusEnum }
|
||||
*
|
||||
*/
|
||||
public StatusEnum getOldStatus() {
|
||||
return oldStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the oldStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link StatusEnum }
|
||||
*
|
||||
*/
|
||||
public void setOldStatus(StatusEnum value) {
|
||||
this.oldStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link StatusEnum }
|
||||
*
|
||||
*/
|
||||
public StatusEnum getNewStatus() {
|
||||
return newStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link StatusEnum }
|
||||
*
|
||||
*/
|
||||
public void setNewStatus(StatusEnum value) {
|
||||
this.newStatus = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,145 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertPrioritizedRecord complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertPrioritizedRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="oldRecordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState"/>
|
||||
* <element name="newRecordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState"/>
|
||||
* </sequence>
|
||||
* <attribute name="recordData" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="recordType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}RecordType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertPrioritizedRecord", propOrder = {
|
||||
"oldRecordState",
|
||||
"newRecordState"
|
||||
})
|
||||
public class AlertPrioritizedRecord {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected RecordState oldRecordState;
|
||||
@XmlElement(required = true)
|
||||
protected RecordState newRecordState;
|
||||
@XmlAttribute(name = "recordData", required = true)
|
||||
protected String recordData;
|
||||
@XmlAttribute(name = "recordType", required = true)
|
||||
protected RecordType recordType;
|
||||
|
||||
/**
|
||||
* Gets the value of the oldRecordState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public RecordState getOldRecordState() {
|
||||
return oldRecordState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the oldRecordState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public void setOldRecordState(RecordState value) {
|
||||
this.oldRecordState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newRecordState property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public RecordState getNewRecordState() {
|
||||
return newRecordState;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newRecordState property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordState }
|
||||
*
|
||||
*/
|
||||
public void setNewRecordState(RecordState value) {
|
||||
this.newRecordState = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordData property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRecordData() {
|
||||
return recordData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordData property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRecordData(String value) {
|
||||
this.recordData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordType }
|
||||
*
|
||||
*/
|
||||
public RecordType getRecordType() {
|
||||
return recordType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordType }
|
||||
*
|
||||
*/
|
||||
public void setRecordType(RecordType value) {
|
||||
this.recordType = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,249 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertProbeDetails complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertProbeDetails">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="target" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="logTime" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="status" use="required" type="{http://schema.ultraservice.neustar.com/v01/}StatusEnum" />
|
||||
* <attribute name="message" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="startTime" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="endTime" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="definition" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="region" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertProbeDetails")
|
||||
public class AlertProbeDetails {
|
||||
|
||||
@XmlAttribute(name = "target", required = true)
|
||||
protected String target;
|
||||
@XmlAttribute(name = "logTime", required = true)
|
||||
protected String logTime;
|
||||
@XmlAttribute(name = "status", required = true)
|
||||
protected StatusEnum status;
|
||||
@XmlAttribute(name = "message", required = true)
|
||||
protected String message;
|
||||
@XmlAttribute(name = "startTime", required = true)
|
||||
protected String startTime;
|
||||
@XmlAttribute(name = "endTime", required = true)
|
||||
protected String endTime;
|
||||
@XmlAttribute(name = "definition", required = true)
|
||||
protected String definition;
|
||||
@XmlAttribute(name = "region", required = true)
|
||||
protected String region;
|
||||
|
||||
/**
|
||||
* Gets the value of the target property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTarget() {
|
||||
return target;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the target property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTarget(String value) {
|
||||
this.target = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the logTime property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLogTime() {
|
||||
return logTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the logTime property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLogTime(String value) {
|
||||
this.logTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the status property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link StatusEnum }
|
||||
*
|
||||
*/
|
||||
public StatusEnum getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the status property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link StatusEnum }
|
||||
*
|
||||
*/
|
||||
public void setStatus(StatusEnum value) {
|
||||
this.status = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the message property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the message property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMessage(String value) {
|
||||
this.message = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the startTime property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStartTime() {
|
||||
return startTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the startTime property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStartTime(String value) {
|
||||
this.startTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the endTime property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEndTime() {
|
||||
return endTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the endTime property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEndTime(String value) {
|
||||
this.endTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the definition property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDefinition() {
|
||||
return definition;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the definition property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDefinition(String value) {
|
||||
this.definition = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the region property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRegion() {
|
||||
return region;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the region property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRegion(String value) {
|
||||
this.region = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertRecord complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertRecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="recordData" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="recordType" type="{http://schema.ultraservice.neustar.com/v01/}RecordType" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertRecord")
|
||||
public class AlertRecord {
|
||||
|
||||
@XmlAttribute(name = "recordData")
|
||||
protected String recordData;
|
||||
@XmlAttribute(name = "recordType")
|
||||
protected RecordType recordType;
|
||||
|
||||
/**
|
||||
* Gets the value of the recordData property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRecordData() {
|
||||
return recordData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordData property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRecordData(String value) {
|
||||
this.recordData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the recordType property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecordType }
|
||||
*
|
||||
*/
|
||||
public RecordType getRecordType() {
|
||||
return recordType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the recordType property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecordType }
|
||||
*
|
||||
*/
|
||||
public void setRecordType(RecordType value) {
|
||||
this.recordType = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,135 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AlertSummaryList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AlertSummaryList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DomainAlertData" type="{http://schema.ultraservice.neustar.com/v01/}DomainAlertData" maxOccurs="unbounded"/>
|
||||
* <element name="ProbeAlertsData" type="{http://schema.ultraservice.neustar.com/v01/}ProbeAlertsData" maxOccurs="unbounded"/>
|
||||
* <element name="MaintenanceAlertsData" type="{http://schema.ultraservice.neustar.com/v01/}MaintenanceAlertsData" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AlertSummaryList", propOrder = {
|
||||
"domainAlertData",
|
||||
"probeAlertsData",
|
||||
"maintenanceAlertsData"
|
||||
})
|
||||
public class AlertSummaryList {
|
||||
|
||||
@XmlElement(name = "DomainAlertData", required = true)
|
||||
protected List<DomainAlertData> domainAlertData;
|
||||
@XmlElement(name = "ProbeAlertsData", required = true)
|
||||
protected List<ProbeAlertsData> probeAlertsData;
|
||||
@XmlElement(name = "MaintenanceAlertsData", required = true)
|
||||
protected List<MaintenanceAlertsData> maintenanceAlertsData;
|
||||
|
||||
/**
|
||||
* Gets the value of the domainAlertData property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the domainAlertData property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getDomainAlertData().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DomainAlertData }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DomainAlertData> getDomainAlertData() {
|
||||
if (domainAlertData == null) {
|
||||
domainAlertData = new ArrayList<DomainAlertData>();
|
||||
}
|
||||
return this.domainAlertData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the probeAlertsData property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the probeAlertsData property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getProbeAlertsData().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ProbeAlertsData }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ProbeAlertsData> getProbeAlertsData() {
|
||||
if (probeAlertsData == null) {
|
||||
probeAlertsData = new ArrayList<ProbeAlertsData>();
|
||||
}
|
||||
return this.probeAlertsData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the maintenanceAlertsData property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the maintenanceAlertsData property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getMaintenanceAlertsData().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link MaintenanceAlertsData }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<MaintenanceAlertsData> getMaintenanceAlertsData() {
|
||||
if (maintenanceAlertsData == null) {
|
||||
maintenanceAlertsData = new ArrayList<MaintenanceAlertsData>();
|
||||
}
|
||||
return this.maintenanceAlertsData;
|
||||
}
|
||||
|
||||
}
|
@ -1,303 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AliasedDomainInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AliasedDomainInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="domainExpired" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="registerarName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="nameServer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="guid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="zoneid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="zone" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="systemid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="status" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="scandate" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="zoneHealthMask" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AliasedDomainInfo")
|
||||
public class AliasedDomainInfo {
|
||||
|
||||
@XmlAttribute(name = "domainExpired", required = true)
|
||||
protected String domainExpired;
|
||||
@XmlAttribute(name = "registerarName", required = true)
|
||||
protected String registerarName;
|
||||
@XmlAttribute(name = "nameServer", required = true)
|
||||
protected String nameServer;
|
||||
@XmlAttribute(name = "guid", required = true)
|
||||
protected String guid;
|
||||
@XmlAttribute(name = "zoneid", required = true)
|
||||
protected String zoneid;
|
||||
@XmlAttribute(name = "zone", required = true)
|
||||
protected String zone;
|
||||
@XmlAttribute(name = "systemid", required = true)
|
||||
protected String systemid;
|
||||
@XmlAttribute(name = "status", required = true)
|
||||
protected String status;
|
||||
@XmlAttribute(name = "scandate", required = true)
|
||||
protected String scandate;
|
||||
@XmlAttribute(name = "zoneHealthMask", required = true)
|
||||
protected String zoneHealthMask;
|
||||
|
||||
/**
|
||||
* Gets the value of the domainExpired property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDomainExpired() {
|
||||
return domainExpired;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the domainExpired property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDomainExpired(String value) {
|
||||
this.domainExpired = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the registerarName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRegisterarName() {
|
||||
return registerarName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the registerarName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRegisterarName(String value) {
|
||||
this.registerarName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the nameServer property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNameServer() {
|
||||
return nameServer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the nameServer property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNameServer(String value) {
|
||||
this.nameServer = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the guid property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGuid() {
|
||||
return guid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the guid property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGuid(String value) {
|
||||
this.guid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zoneid property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZoneid() {
|
||||
return zoneid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zoneid property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZoneid(String value) {
|
||||
this.zoneid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zone property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZone() {
|
||||
return zone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zone property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZone(String value) {
|
||||
this.zone = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the systemid property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSystemid() {
|
||||
return systemid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the systemid property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSystemid(String value) {
|
||||
this.systemid = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the status property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the status property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStatus(String value) {
|
||||
this.status = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the scandate property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getScandate() {
|
||||
return scandate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the scandate property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setScandate(String value) {
|
||||
this.scandate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the zoneHealthMask property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getZoneHealthMask() {
|
||||
return zoneHealthMask;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the zoneHealthMask property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setZoneHealthMask(String value) {
|
||||
this.zoneHealthMask = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AllCountriesList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AllCountriesList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CountryInfo" type="{http://schema.ultraservice.neustar.com/v01/}CountryInfo" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AllCountriesList", propOrder = {
|
||||
"countryInfo"
|
||||
})
|
||||
public class AllCountriesList {
|
||||
|
||||
@XmlElement(name = "CountryInfo", required = true)
|
||||
protected List<CountryInfo> countryInfo;
|
||||
|
||||
/**
|
||||
* Gets the value of the countryInfo property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the countryInfo property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCountryInfo().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CountryInfo }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CountryInfo> getCountryInfo() {
|
||||
if (countryInfo == null) {
|
||||
countryInfo = new ArrayList<CountryInfo>();
|
||||
}
|
||||
return this.countryInfo;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AllStatesList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AllStatesList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="stateInfo" type="{http://schema.ultraservice.neustar.com/v01/}StatesInfo" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AllStatesList", propOrder = {
|
||||
"stateInfo"
|
||||
})
|
||||
public class AllStatesList {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected List<StatesInfo> stateInfo;
|
||||
|
||||
/**
|
||||
* Gets the value of the stateInfo property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the stateInfo property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getStateInfo().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link StatesInfo }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<StatesInfo> getStateInfo() {
|
||||
if (stateInfo == null) {
|
||||
stateInfo = new ArrayList<StatesInfo>();
|
||||
}
|
||||
return this.stateInfo;
|
||||
}
|
||||
|
||||
}
|
@ -1,249 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AllUsersDetailsData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AllUsersDetailsData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="firstName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="lastName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountNamesList" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="lastLoggedInTime" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="accountsCount" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="lastLogged" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="lastLoggedCount" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AllUsersDetailsData")
|
||||
public class AllUsersDetailsData {
|
||||
|
||||
@XmlAttribute(name = "firstName", required = true)
|
||||
protected String firstName;
|
||||
@XmlAttribute(name = "lastName", required = true)
|
||||
protected String lastName;
|
||||
@XmlAttribute(name = "accountNamesList", required = true)
|
||||
protected String accountNamesList;
|
||||
@XmlAttribute(name = "lastLoggedInTime", required = true)
|
||||
protected String lastLoggedInTime;
|
||||
@XmlAttribute(name = "accountName", required = true)
|
||||
protected String accountName;
|
||||
@XmlAttribute(name = "accountsCount", required = true)
|
||||
protected String accountsCount;
|
||||
@XmlAttribute(name = "lastLogged", required = true)
|
||||
protected String lastLogged;
|
||||
@XmlAttribute(name = "lastLoggedCount", required = true)
|
||||
protected String lastLoggedCount;
|
||||
|
||||
/**
|
||||
* Gets the value of the firstName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFirstName() {
|
||||
return firstName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the firstName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFirstName(String value) {
|
||||
this.firstName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastName() {
|
||||
return lastName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastName(String value) {
|
||||
this.lastName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountNamesList property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountNamesList() {
|
||||
return accountNamesList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountNamesList property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountNamesList(String value) {
|
||||
this.accountNamesList = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastLoggedInTime property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastLoggedInTime() {
|
||||
return lastLoggedInTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastLoggedInTime property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastLoggedInTime(String value) {
|
||||
this.lastLoggedInTime = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountName() {
|
||||
return accountName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountName(String value) {
|
||||
this.accountName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the accountsCount property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountsCount() {
|
||||
return accountsCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountsCount property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountsCount(String value) {
|
||||
this.accountsCount = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastLogged property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastLogged() {
|
||||
return lastLogged;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastLogged property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastLogged(String value) {
|
||||
this.lastLogged = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the lastLoggedCount property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLastLoggedCount() {
|
||||
return lastLoggedCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the lastLoggedCount property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLastLoggedCount(String value) {
|
||||
this.lastLoggedCount = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AllUsersDetailsList complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AllUsersDetailsList">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AllUsersDetailsData" type="{http://schema.ultraservice.neustar.com/v01/}AllUsersDetailsData" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AllUsersDetailsList", propOrder = {
|
||||
"allUsersDetailsData"
|
||||
})
|
||||
public class AllUsersDetailsList {
|
||||
|
||||
@XmlElement(name = "AllUsersDetailsData", required = true)
|
||||
protected List<AllUsersDetailsData> allUsersDetailsData;
|
||||
|
||||
/**
|
||||
* Gets the value of the allUsersDetailsData property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the allUsersDetailsData property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAllUsersDetailsData().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link AllUsersDetailsData }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<AllUsersDetailsData> getAllUsersDetailsData() {
|
||||
if (allUsersDetailsData == null) {
|
||||
allUsersDetailsData = new ArrayList<AllUsersDetailsData>();
|
||||
}
|
||||
return this.allUsersDetailsData;
|
||||
}
|
||||
|
||||
}
|
@ -1,51 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlEnumValue;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for autoSerialUpdateType.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="autoSerialUpdateType">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="enable"/>
|
||||
* <enumeration value="disable"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "autoSerialUpdateType")
|
||||
@XmlEnum
|
||||
public enum AutoSerialUpdateType {
|
||||
|
||||
@XmlEnumValue("enable")
|
||||
ENABLE("enable"),
|
||||
@XmlEnumValue("disable")
|
||||
DISABLE("disable");
|
||||
private final String value;
|
||||
|
||||
AutoSerialUpdateType(String v) {
|
||||
value = v;
|
||||
}
|
||||
|
||||
public String value() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public static AutoSerialUpdateType fromValue(String v) {
|
||||
for (AutoSerialUpdateType c: AutoSerialUpdateType.values()) {
|
||||
if (c.value.equals(v)) {
|
||||
return c;
|
||||
}
|
||||
}
|
||||
throw new IllegalArgumentException(v);
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for AutomaticPointerPreference complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AutomaticPointerPreference">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="ptrStatus" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AutomaticPointerPreference")
|
||||
public class AutomaticPointerPreference {
|
||||
|
||||
@XmlAttribute(name = "ptrStatus")
|
||||
protected String ptrStatus;
|
||||
@XmlAttribute(name = "isDefault")
|
||||
protected Boolean isDefault;
|
||||
|
||||
/**
|
||||
* Gets the value of the ptrStatus property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPtrStatus() {
|
||||
return ptrStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the ptrStatus property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPtrStatus(String value) {
|
||||
this.ptrStatus = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the isDefault property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isIsDefault() {
|
||||
return isDefault;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the isDefault property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setIsDefault(Boolean value) {
|
||||
this.isDefault = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CNAMERecord complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CNAMERecord">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="hostName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CNAMERecord")
|
||||
public class CNAMERecord {
|
||||
|
||||
@XmlAttribute(name = "hostName", required = true)
|
||||
protected String hostName;
|
||||
|
||||
/**
|
||||
* Gets the value of the hostName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getHostName() {
|
||||
return hostName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the hostName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setHostName(String value) {
|
||||
this.hostName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for ContactARPoolRuleInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ContactARPoolRuleInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="arPoolRuleKey" type="{http://schema.ultraservice.neustar.com/v01/}ARPoolRuleKey"/>
|
||||
* <element name="addressBookEntryKeys" type="{http://schema.ultraservice.neustar.com/v01/}AddressBookEntryKeys"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ContactARPoolRuleInfo", propOrder = {
|
||||
"arPoolRuleKey",
|
||||
"addressBookEntryKeys"
|
||||
})
|
||||
public class ContactARPoolRuleInfo {
|
||||
|
||||
@XmlElement(required = true)
|
||||
protected ARPoolRuleKey arPoolRuleKey;
|
||||
@XmlElement(required = true)
|
||||
protected AddressBookEntryKeys addressBookEntryKeys;
|
||||
|
||||
/**
|
||||
* Gets the value of the arPoolRuleKey property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ARPoolRuleKey }
|
||||
*
|
||||
*/
|
||||
public ARPoolRuleKey getArPoolRuleKey() {
|
||||
return arPoolRuleKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the arPoolRuleKey property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ARPoolRuleKey }
|
||||
*
|
||||
*/
|
||||
public void setArPoolRuleKey(ARPoolRuleKey value) {
|
||||
this.arPoolRuleKey = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the addressBookEntryKeys property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AddressBookEntryKeys }
|
||||
*
|
||||
*/
|
||||
public AddressBookEntryKeys getAddressBookEntryKeys() {
|
||||
return addressBookEntryKeys;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the addressBookEntryKeys property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AddressBookEntryKeys }
|
||||
*
|
||||
*/
|
||||
public void setAddressBookEntryKeys(AddressBookEntryKeys value) {
|
||||
this.addressBookEntryKeys = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CopyAssignedDirDNSGroup complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CopyAssignedDirDNSGroup">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="existingGroupID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CopyAssignedDirDNSGroup")
|
||||
public class CopyAssignedDirDNSGroup {
|
||||
|
||||
@XmlAttribute(name = "existingGroupID", required = true)
|
||||
protected String existingGroupID;
|
||||
|
||||
/**
|
||||
* Gets the value of the existingGroupID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getExistingGroupID() {
|
||||
return existingGroupID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the existingGroupID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setExistingGroupID(String value) {
|
||||
this.existingGroupID = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CopyDirectionalGroup complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CopyDirectionalGroup">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="existingGroupID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="newGroupName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CopyDirectionalGroup")
|
||||
public class CopyDirectionalGroup {
|
||||
|
||||
@XmlAttribute(name = "existingGroupID", required = true)
|
||||
protected String existingGroupID;
|
||||
@XmlAttribute(name = "newGroupName", required = true)
|
||||
protected String newGroupName;
|
||||
|
||||
/**
|
||||
* Gets the value of the existingGroupID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getExistingGroupID() {
|
||||
return existingGroupID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the existingGroupID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setExistingGroupID(String value) {
|
||||
this.existingGroupID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the newGroupName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNewGroupName() {
|
||||
return newGroupName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the newGroupName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNewGroupName(String value) {
|
||||
this.newGroupName = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,79 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CountryInfo complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CountryInfo">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="CountryName" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="CountryId" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CountryInfo")
|
||||
public class CountryInfo {
|
||||
|
||||
@XmlAttribute(name = "CountryName")
|
||||
protected String countryName;
|
||||
@XmlAttribute(name = "CountryId", required = true)
|
||||
protected long countryId;
|
||||
|
||||
/**
|
||||
* Gets the value of the countryName property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCountryName() {
|
||||
return countryName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the countryName property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCountryName(String value) {
|
||||
this.countryName = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the countryId property.
|
||||
*
|
||||
*/
|
||||
public long getCountryId() {
|
||||
return countryId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the countryId property.
|
||||
*
|
||||
*/
|
||||
public void setCountryId(long value) {
|
||||
this.countryId = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,91 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlSeeAlso;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CustomHTTPHeaderData complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CustomHTTPHeaderData">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="accountID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* <attribute name="customHeaderValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CustomHTTPHeaderData")
|
||||
@XmlSeeAlso({
|
||||
CustomHTTPHeaderDataGUID.class
|
||||
})
|
||||
public class CustomHTTPHeaderData {
|
||||
|
||||
@XmlAttribute(name = "accountID", required = true)
|
||||
protected String accountID;
|
||||
@XmlAttribute(name = "customHeaderValue", required = true)
|
||||
protected String customHeaderValue;
|
||||
|
||||
/**
|
||||
* Gets the value of the accountID property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAccountID() {
|
||||
return accountID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the accountID property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAccountID(String value) {
|
||||
this.accountID = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the customHeaderValue property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCustomHeaderValue() {
|
||||
return customHeaderValue;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the customHeaderValue property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCustomHeaderValue(String value) {
|
||||
this.customHeaderValue = value;
|
||||
}
|
||||
|
||||
}
|
@ -1,62 +0,0 @@
|
||||
|
||||
package com.neustar.ultraservice.schema.v01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Java class for CustomHTTPHeaderDataGUID complex type.
|
||||
*
|
||||
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CustomHTTPHeaderDataGUID">
|
||||
* <complexContent>
|
||||
* <extension base="{http://schema.ultraservice.neustar.com/v01/}CustomHTTPHeaderData">
|
||||
* <sequence>
|
||||
* </sequence>
|
||||
* <attribute name="guid" type="{http://www.w3.org/2001/XMLSchema}string" />
|
||||
* </extension>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CustomHTTPHeaderDataGUID")
|
||||
public class CustomHTTPHeaderDataGUID
|
||||
extends CustomHTTPHeaderData
|
||||
{
|
||||
|
||||
@XmlAttribute(name = "guid")
|
||||
protected String guid;
|
||||
|
||||
/**
|
||||
* Gets the value of the guid property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getGuid() {
|
||||
return guid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the guid property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setGuid(String value) {
|
||||
this.guid = value;
|
||||
}
|
||||
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user