diff --git a/Plugins/Mineplex.BungeeRotator/pom.xml b/Plugins/Mineplex.BungeeRotator/pom.xml index 9801eb0d2..3118cb502 100644 --- a/Plugins/Mineplex.BungeeRotator/pom.xml +++ b/Plugins/Mineplex.BungeeRotator/pom.xml @@ -20,8 +20,9 @@ ${project.version} - org.apache.cxf - cxf-bundle + org.apache.httpcomponents + httpclient + 4.5.2 diff --git a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/ClientPasswordCallback.java b/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/ClientPasswordCallback.java deleted file mode 100644 index 05e2e4566..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/ClientPasswordCallback.java +++ /dev/null @@ -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); - } - } - - } -} diff --git a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/ResourceRecordTypes.java b/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/ResourceRecordTypes.java deleted file mode 100644 index 0213f2f9f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/ResourceRecordTypes.java +++ /dev/null @@ -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 lookup = new HashMap(); - private static final Map reverseLookup = new HashMap(); - - 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)); - } -} diff --git a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/SampleMain.java b/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/SampleMain.java deleted file mode 100644 index 57d71da27..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/SampleMain.java +++ /dev/null @@ -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(); - } - } -} diff --git a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIClient.java b/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIClient.java deleted file mode 100644 index 4544e4045..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIClient.java +++ /dev/null @@ -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); -} diff --git a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIClientImpl.java b/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIClientImpl.java deleted file mode 100644 index 3f989184e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIClientImpl.java +++ /dev/null @@ -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 properties = new HashMap(); - 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()); - } - } -} diff --git a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIException.java b/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIException.java deleted file mode 100644 index 09c8f92b6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/biz/neustar/ultra/client/UltraAPIException.java +++ /dev/null @@ -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()); - } -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Action.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Action.java deleted file mode 100644 index 998bc37e9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Action.java +++ /dev/null @@ -1,58 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for action. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AliasZoneInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AliasZoneInfo.java deleted file mode 100644 index 82bc847be..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AliasZoneInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for aliasZoneInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ApplicationID.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ApplicationID.java deleted file mode 100644 index fdb2d793e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ApplicationID.java +++ /dev/null @@ -1,50 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for applicationID. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AssetType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AssetType.java deleted file mode 100644 index 47d21ca91..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AssetType.java +++ /dev/null @@ -1,140 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for assetType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AuditSummary.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AuditSummary.java deleted file mode 100644 index aa8ddf38f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/AuditSummary.java +++ /dev/null @@ -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; - - -/** - *

Java class for auditSummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Code.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Code.java deleted file mode 100644 index 46e05c0ab..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Code.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for code. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ConversionTypeEnum.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ConversionTypeEnum.java deleted file mode 100644 index ad48ade1f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ConversionTypeEnum.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for conversionTypeEnum. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ConvertTypeEnum.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ConvertTypeEnum.java deleted file mode 100644 index 027c1e025..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ConvertTypeEnum.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for convertTypeEnum. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="convertTypeEnum">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="A"/>
- *     <enumeration value="MRD"/>
- *     <enumeration value="ADAPTIVE_RESPONSE"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/CreateType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/CreateType.java deleted file mode 100644 index cab7afd26..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/CreateType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for createType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/DeleteZoneStatus.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/DeleteZoneStatus.java deleted file mode 100644 index 4424494c1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/DeleteZoneStatus.java +++ /dev/null @@ -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; - - -/** - *

Java class for DeleteZoneStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/InternalZone.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/InternalZone.java deleted file mode 100644 index d486787a8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/InternalZone.java +++ /dev/null @@ -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; - - -/** - *

Java class for internalZone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/NameServer.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/NameServer.java deleted file mode 100644 index 8a0abcb66..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/NameServer.java +++ /dev/null @@ -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; - - -/** - *

Java class for nameServer complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/NameServerIpList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/NameServerIpList.java deleted file mode 100644 index a6ec153b7..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/NameServerIpList.java +++ /dev/null @@ -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; - - -/** - *

Java class for nameServerIpList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ObjectFactory.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ObjectFactory.java deleted file mode 100644 index e13cd5e06..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ObjectFactory.java +++ /dev/null @@ -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. - *

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 createUltraWSException(UltraWSException value) { - return new JAXBElement(_UltraWSException_QNAME, UltraWSException.class, null, value); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/PrimaryNameServers.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/PrimaryNameServers.java deleted file mode 100644 index 40a3327b5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/PrimaryNameServers.java +++ /dev/null @@ -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; - - -/** - *

Java class for primaryNameServers complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/PrimaryZoneInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/PrimaryZoneInfo.java deleted file mode 100644 index 66341d686..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/PrimaryZoneInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for primaryZoneInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the restrictIPList property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRestrictIPList().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RestrictIP } - * - * - */ - public List getRestrictIPList() { - if (restrictIPList == null) { - restrictIPList = new ArrayList(); - } - return this.restrictIPList; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/RestrictIP.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/RestrictIP.java deleted file mode 100644 index d6a00f82c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/RestrictIP.java +++ /dev/null @@ -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; - - -/** - *

Java class for restrictIP complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/SecondaryZoneInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/SecondaryZoneInfo.java deleted file mode 100644 index 8a87439dc..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/SecondaryZoneInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for secondaryZoneInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferInfo.java deleted file mode 100644 index b286c3326..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for transferInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "transferInfo", propOrder = { - "accountId", - "nsHosts", - "sponsorId", - "suspended", - "toEmailIds", - "userId" -}) -public class TransferInfo { - - protected String accountId; - @XmlElement(nillable = true) - protected List nsHosts; - protected String sponsorId; - protected boolean suspended; - @XmlElement(nillable = true) - protected List 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. - * - *

- * 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 set method for the nsHosts property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNsHosts().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getNsHosts() { - if (nsHosts == null) { - nsHosts = new ArrayList(); - } - 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. - * - *

- * 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 set method for the toEmailIds property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getToEmailIds().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getToEmailIds() { - if (toEmailIds == null) { - toEmailIds = new ArrayList(); - } - 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferStatus.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferStatus.java deleted file mode 100644 index 6ce69605f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferStatus.java +++ /dev/null @@ -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; - - -/** - *

Java class for transferStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferStatusType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferStatusType.java deleted file mode 100644 index 4597ea121..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/TransferStatusType.java +++ /dev/null @@ -1,46 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for transferStatusType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <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>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraDNS1.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraDNS1.java deleted file mode 100644 index 792ff1918..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraDNS1.java +++ /dev/null @@ -1,2104 +0,0 @@ -package com.neustar.ultra.api.webservice.v01; - -import javax.jws.WebMethod; -import javax.jws.WebParam; -import javax.jws.WebResult; -import javax.jws.WebService; -import javax.jws.soap.SOAPBinding; -import javax.xml.bind.annotation.XmlSeeAlso; - -/** - * This class was generated by Apache CXF 2.7.7 - * 2014-01-15T10:08:40.615-05:00 - * Generated source version: 2.7.7 - * - */ -@WebService(targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", name = "UltraDNS1") -@XmlSeeAlso({ObjectFactory.class, com.neustar.ultraservice.schema.ObjectFactory.class, com.neustar.ultraservice.schema.v01.ObjectFactory.class, net.java.dev.jaxb.array.ObjectFactory.class}) -@SOAPBinding(style = SOAPBinding.Style.RPC) -public interface UltraDNS1 { - - @WebResult(name = "ResourceRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ResourceRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordList getResourceRecordsOfDNameByType( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "rrType", name = "rrType") - int rrType - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalPoolRecordID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalPoolRecordID") - @WebMethod - public java.lang.String addDirectionalPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "AddDirectionalRecordData", name = "AddDirectionalRecordData") - com.neustar.ultraservice.schema.v01.AddDirectionalRecordData addDirectionalRecordData - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deletePoolProbe( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolProbeID", name = "poolProbeID") - java.lang.String poolProbeID - ) throws UltraWSException_Exception; - - @WebResult(name = "AddressBookEntryList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AddressBookEntryList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AddressBookEntryList getAllAddressBookEntries( - @WebParam(partName = "addressBookEntryListKey", name = "addressBookEntryListKey") - com.neustar.ultraservice.schema.v01.AddressBookEntryListKey addressBookEntryListKey - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String getAutoSerialUpdate( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID - ) throws UltraWSException_Exception; - - @WebResult(name = "PasswordVerificationQuestion", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "PasswordVerificationQuestion") - @WebMethod - public com.neustar.ultraservice.schema.v01.PasswordVerificationQuestionList getSecurityPreferencesForUser() throws UltraWSException_Exception; - - @WebResult(name = "guid", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "guid") - @WebMethod - public java.lang.String createResourceRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "resourceRecord", name = "resourceRecord") - com.neustar.ultraservice.schema.v01.ResourceRecordToCreate resourceRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteARPoolRecordProbe( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordProbeId id - ) throws UltraWSException_Exception; - - @WebResult(name = "ARPoolProbeList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ARPoolProbeList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ARPoolProbeList getARProbes( - @WebParam(partName = "poolName", name = "poolName") - java.lang.String poolName, - @WebParam(partName = "probeListParams", name = "probeListParams") - com.neustar.ultraservice.schema.v01.ProbeListParams probeListParams - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String createPrimaryZone( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "forceImport", name = "forceImport") - boolean forceImport - ) throws UltraWSException_Exception; - - @WebResult(name = "ZoneList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ZoneList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ZoneList getZonesOfAccountRange( - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneType", name = "zoneType") - com.neustar.ultraservice.schema.v01.ZoneType zoneType, - @WebParam(partName = "offset", name = "offset") - int offset, - @WebParam(partName = "limit", name = "limit") - int limit - ) throws UltraWSException_Exception; - - @WebResult(name = "ARPoolAlertsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ARPoolAlertsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ARPoolAlertsList getARPoolAlerts( - @WebParam(partName = "arPoolAlertKey", name = "arPoolAlertKey") - com.neustar.ultraservice.schema.v01.ARPoolAlertsKey arPoolAlertKey, - @WebParam(partName = "alertListParams", name = "alertListParams") - com.neustar.ultraservice.schema.v01.PoolAlertsListParams alertListParams - ) throws UltraWSException_Exception; - - @WebResult(name = "PoolDetailsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "PoolDetailsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.PoolDetailsList getARPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "poolName", name = "poolName") - java.lang.String poolName - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalDNSAvailableRegionList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalDNSAvailableRegionList") - @WebMethod - public com.neustar.ultraservice.schema.v01.RegionList getAvailableRegions() throws UltraWSException_Exception; - - @WebResult(name = "HealthCheckList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "HealthCheckList") - @WebMethod - public com.neustar.ultraservice.schema.v01.HealthCheckList healthCheck() throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteMailMXBacker( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String rollbackTransaction( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String getMailMXBackerStatus( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "Password", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Password") - @WebMethod - public java.lang.String resetLostPassword( - @WebParam(partName = "userName", name = "userName") - java.lang.String userName, - @WebParam(partName = "PasswordVerificationInfo", name = "PasswordVerificationInfo") - com.neustar.ultraservice.schema.v01.PasswordVerificationInfo passwordVerificationInfo, - @WebParam(partName = "newPassword", name = "newPassword") - java.lang.String newPassword - ) throws UltraWSException_Exception; - - @WebResult(name = "transactionId", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "transactionId") - @WebMethod - public java.lang.String startTransaction() throws UltraWSException_Exception; - - @WebResult(name = "DsRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DsRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DsRecordList getDsRecords( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "return", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "return") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteMonitoredRDPool( - @WebParam(partName = "monitoredRDPoolKey", name = "monitoredRDPoolKey") - com.neustar.ultraservice.schema.v01.MonitoredRDPoolKey monitoredRDPoolKey - ) throws UltraWSException_Exception; - - @WebResult(name = "AccountsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AccountsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AccountDetailsList getAccountsListOfUser() throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String unAliasZone( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "aliasZoneName", name = "aliasZoneName") - java.lang.String aliasZoneName, - @WebParam(partName = "parentZoneName", name = "parentZoneName") - java.lang.String parentZoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addWebForwardPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "WebForwardPoolRecordData", name = "WebForwardPoolRecordData") - com.neustar.ultraservice.schema.v01.WebForwardPoolRecordData webForwardPoolRecordData - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARPoolProbe( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolProbeId id, - @WebParam(partName = "probe", name = "probe") - com.neustar.ultraservice.schema.v01.Probe probe - ) throws UltraWSException_Exception; - - @WebResult(name = "DashboardTypeOrderList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DashboardTypeOrderList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DashboardTypeOrderInfoList getDashboardTypeOrderPreference() throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String copyPrimaryZone( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "newZoneName", name = "newZoneName") - java.lang.String newZoneName, - @WebParam(partName = "parentZoneName", name = "parentZoneName") - java.lang.String parentZoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "guid", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "guid") - @WebMethod - public java.lang.String addRecordToRRPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "roundRobinRecord", name = "roundRobinRecord") - com.neustar.ultraservice.schema.v01.RoundRobinRecord roundRobinRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deletePoolNotificationOfEmail( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addARPoolProbe( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolId id, - @WebParam(partName = "probe", name = "probe") - com.neustar.ultraservice.schema.v01.Probe probe - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String autoSerialUpdate( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "autoSerialUpdateValue", name = "autoSerialUpdateValue") - com.neustar.ultraservice.schema.v01.AutoSerialUpdateType autoSerialUpdateValue - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteLBPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "lbPoolID", name = "lbPoolID") - java.lang.String lbPoolID, - @WebParam(partName = "DeleteAll", name = "DeleteAll") - java.lang.String deleteAll, - @WebParam(partName = "retainRecordId", name = "retainRecordId") - java.lang.String retainRecordId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status suspendZone( - @WebParam(partName = "suspendZone", name = "suspendZone") - com.neustar.ultraservice.schema.v01.SuspendZone suspendZone - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public com.neustar.ultraservice.schema.v01.UserContactInfoValues getContactInformationOfUser() throws UltraWSException_Exception; - - @WebResult(name = "GroupsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "GroupsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AccountLevelGroupsList getAccountLevelDirectionalGroups( - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "GroupType", name = "GroupType") - java.lang.String groupType - ) throws UltraWSException_Exception; - - @WebResult(name = "DomainDnssecPolicies", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DomainDnssecPolicies") - @WebMethod - public com.neustar.ultraservice.schema.v01.DomainDnssecPolicies getDomainDnssecPolicies( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "ResourceRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ResourceRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordList getResourceRecordList( - @WebParam(partName = "resourceRecord", name = "resourceRecord") - com.neustar.ultraservice.schema.v01.ResourceRecordToSearch resourceRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "accountID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "accountID") - @WebMethod - public java.lang.String updateContactInformationOfUser( - @WebParam(partName = "userName", name = "userName") - java.lang.String userName, - @WebParam(partName = "UserContactInfo", name = "UserContactInfo") - com.neustar.ultraservice.schema.v01.UserContactInfo userContactInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalPoolRecordID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalPoolRecordID") - @WebMethod - public java.lang.String createDirectionalRecordConfiguration( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "dirPoolID", name = "dirPoolID") - java.lang.String dirPoolID, - @WebParam(partName = "createRegionGrouping", name = "createRegionGrouping") - java.lang.String createRegionGrouping, - @WebParam(partName = "DirectionalRecordConfiguration", name = "DirectionalRecordConfiguration") - com.neustar.ultraservice.schema.v01.DirectionalDNSRecord directionalRecordConfiguration, - @WebParam(partName = "CopyDirectionalGroup", name = "CopyDirectionalGroup") - com.neustar.ultraservice.schema.v01.CopyDirectionalGroup copyDirectionalGroup, - @WebParam(partName = "CopyAssignedDirectionalGroup", name = "CopyAssignedDirectionalGroup") - com.neustar.ultraservice.schema.v01.CopyAssignedDirDNSGroup copyAssignedDirectionalGroup, - @WebParam(partName = "DirectionalDNSGroupDetail", name = "DirectionalDNSGroupDetail") - com.neustar.ultraservice.schema.v01.DirectionalDNSGroupDetail directionalDNSGroupDetail - ) throws UltraWSException_Exception; - - @WebResult(name = "ProbesList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ProbesList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbesList getProbesOfPoolRecord( - @WebParam(partName = "poolRecordID", name = "poolRecordID") - java.lang.String poolRecordID, - @WebParam(partName = "sortBy", name = "sortBy") - java.lang.String sortBy - ) throws UltraWSException_Exception; - - @WebResult(name = "AddressBookEntry", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AddressBookEntry") - @WebMethod - public com.neustar.ultraservice.schema.v01.AddressBookEntryGet getAddressBookEntry( - @WebParam(partName = "addressBookEntryKey", name = "addressBookEntryKey") - com.neustar.ultraservice.schema.v01.AddressBookEntryKey addressBookEntryKey - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status convertAccountGroupToPoolGroup( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "GroupConversionDetails", name = "GroupConversionDetails") - com.neustar.ultraservice.schema.v01.AcctToPoolGroupConversionDetails groupConversionDetails - ) throws UltraWSException_Exception; - - @WebResult(name = "MailFwdRecordsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "MailFwdRecordsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.MailFwdRecordsList queryMailForwards( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "GroupId", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "GroupId") - @WebMethod - public java.lang.String addAccountLevelDirectionalGroup( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "CopyDirectionalGroup", name = "CopyDirectionalGroup") - com.neustar.ultraservice.schema.v01.CopyDirectionalGroup copyDirectionalGroup, - @WebParam(partName = "GlobalDirectionalGroupDetails", name = "GlobalDirectionalGroupDetails") - com.neustar.ultraservice.schema.v01.GlobalDirectionalGroupDetails globalDirectionalGroupDetails - ) throws UltraWSException_Exception; - - @WebResult(name = "ProbesList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ProbesList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbesList getAllProbeNames() throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public DeleteZoneStatus deleteZoneReturningTaskId( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "TaskId", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "TaskId") - @WebMethod - public com.neustar.ultraservice.schema.v01.TaskId runTest( - @WebParam(partName = "value", name = "value") - java.lang.String value - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARPoolConfiguration( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.ARPoolConfigurationKey id, - @WebParam(partName = "poolConfiguration", name = "poolConfiguration") - com.neustar.ultraservice.schema.v01.ARPoolConfigurationUpdate poolConfiguration - ) throws UltraWSException_Exception; - - @WebResult(name = "ARPoolRecordsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ARPoolRecordsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ARPoolRecordsList getARPoolRecords( - @WebParam(partName = "poolRecordListKey", name = "poolRecordListKey") - com.neustar.ultraservice.schema.v01.ARPoolRecordListKey poolRecordListKey, - @WebParam(partName = "recordListParams", name = "recordListParams") - com.neustar.ultraservice.schema.v01.PoolRecordListParams recordListParams - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateRecordOfRRPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "resourceRecord", name = "resourceRecord") - com.neustar.ultraservice.schema.v01.UpdateRoundRobinRecord resourceRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status convertPoolGroupToAccountGroup( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "GroupConversionDetails", name = "GroupConversionDetails") - com.neustar.ultraservice.schema.v01.PoolToAcctGroupConversionDetails groupConversionDetails - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARPoolRecordProbe( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordProbeId id, - @WebParam(partName = "probe", name = "probe") - com.neustar.ultraservice.schema.v01.Probe probe - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status unsuspendZone( - @WebParam(partName = "unsuspendZone", name = "unsuspendZone") - com.neustar.ultraservice.schema.v01.UnsuspendZone unsuspendZone - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteZone( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updatePoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolRecordID", name = "poolRecordID") - java.lang.String poolRecordID, - @WebParam(partName = "parentPoolId", name = "parentPoolId") - java.lang.String parentPoolId, - @WebParam(partName = "childPoolId", name = "childPoolId") - java.lang.String childPoolId, - @WebParam(partName = "pointsTo", name = "pointsTo") - java.lang.String pointsTo, - @WebParam(partName = "priority", name = "priority") - java.lang.String priority, - @WebParam(partName = "failOverDelay", name = "failOverDelay") - java.lang.String failOverDelay, - @WebParam(partName = "ttl", name = "ttl") - java.lang.String ttl, - @WebParam(partName = "weight", name = "weight") - java.lang.String weight, - @WebParam(partName = "mode", name = "mode") - java.lang.String mode, - @WebParam(partName = "threshold", name = "threshold") - java.lang.String threshold - ) throws UltraWSException_Exception; - - @WebResult(name = "RestrictIPList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "RestrictIPList") - @WebMethod - public com.neustar.ultraservice.schema.v01.RestrictIPList getRestrictIP( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "sortBy", name = "sortBy") - java.lang.String sortBy, - @WebParam(partName = "sortOrder", name = "sortOrder") - java.lang.String sortOrder - ) throws UltraWSException_Exception; - - @WebResult(name = "poolRecordID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "poolRecordID") - @WebMethod - public java.lang.String addPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolID", name = "poolID") - java.lang.String poolID, - @WebParam(partName = "pointsTo", name = "pointsTo") - java.lang.String pointsTo, - @WebParam(partName = "priority", name = "priority") - java.lang.String priority, - @WebParam(partName = "failOverDelay", name = "failOverDelay") - java.lang.String failOverDelay, - @WebParam(partName = "ttl", name = "ttl") - java.lang.String ttl, - @WebParam(partName = "weight", name = "weight") - java.lang.String weight, - @WebParam(partName = "mode", name = "mode") - java.lang.String mode, - @WebParam(partName = "threshold", name = "threshold") - java.lang.String threshold - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteARPoolProbe( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolProbeId id - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public com.neustar.ultraservice.schema.v01.UserDefaultPreferences getUserDefaultPreferences() throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteAddressBookEntry( - @WebParam(partName = "addressBookEntryKey", name = "addressBookEntryKey") - com.neustar.ultraservice.schema.v01.AddressBookEntryKey addressBookEntryKey - ) throws UltraWSException_Exception; - - @WebResult(name = "UsersOfAccount", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "UsersOfAccount") - @WebMethod - public com.neustar.ultraservice.schema.v01.UsersList getUsersOfAccount( - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteCustomHTTPHeaderOfAccount( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARProbeDefinition( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.ProbeDefinitionId id, - @WebParam(partName = "probeDefinition", name = "probeDefinition") - com.neustar.ultraservice.schema.v01.ProbeDefinition probeDefinition - ) throws UltraWSException_Exception; - - @WebResult(name = "UltraZone", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "UltraZone") - @WebMethod - public InternalZone getSecondaryZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteWebForward( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String setSecurityPreferences( - @WebParam(partName = "securityPreferences", name = "securityPreferences") - com.neustar.ultraservice.schema.v01.SecurityPreferences securityPreferences - ) throws UltraWSException_Exception; - - @WebResult(name = "MonitoredRDPool", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "MonitoredRDPool") - @WebMethod - public com.neustar.ultraservice.schema.v01.MonitoredRDPool getMonitoredRDPool( - @WebParam(partName = "monitoredRDPoolKey", name = "monitoredRDPoolKey") - com.neustar.ultraservice.schema.v01.MonitoredRDPoolKey monitoredRDPoolKey - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String requestZoneTransfer( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "primaryNameServer", name = "primaryNameServer") - java.lang.String primaryNameServer - ) throws UltraWSException_Exception; - - @WebResult(name = "RecentActivity", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "RecentActivity") - @WebMethod - public com.neustar.ultraservice.schema.v01.RecentActivityList getRecentActivityOfUser( - @WebParam(partName = "userName", name = "userName") - java.lang.String userName - ) throws UltraWSException_Exception; - - @WebResult(name = "DefaultHTTPHeaderDataList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DefaultHTTPHeaderDataList") - @WebMethod - public com.neustar.ultraservice.schema.v01.CustomHTTPHeaderDataList getDefaultHTTPHeaders() throws UltraWSException_Exception; - - @WebResult(name = "AllUserDetailsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AllUserDetailsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AllUsersDetailsList getAllUserDetailsList() throws UltraWSException_Exception; - - @WebResult(name = "DirectionalDNSRecordDetailList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalDNSRecordDetailList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DirectionalDNSRecordDetailList getDirectionalDNSRecordsForGroup( - @WebParam(partName = "groupName", name = "groupName") - java.lang.String groupName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType - ) throws UltraWSException_Exception; - - @WebResult(name = "ProbeRegionList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ProbeRegionList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbeRegionList getARProbeRegions() throws UltraWSException_Exception; - - @WebResult(name = "ZoneList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ZoneList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ZoneList getZonesOfAccount( - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneType", name = "zoneType") - com.neustar.ultraservice.schema.v01.ZoneType zoneType - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updatePoolProbe( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolProbeID", name = "poolProbeID") - java.lang.String poolProbeID, - @WebParam(partName = "probeDataType", name = "probeDataType") - java.lang.String probeDataType, - @WebParam(partName = "probeInterval", name = "probeInterval") - java.lang.String probeInterval, - @WebParam(partName = "agentThreshold", name = "agentThreshold") - java.lang.String agentThreshold, - @WebParam(partName = "agentsRunningProbeList", name = "agentsRunningProbeList") - com.neustar.ultraservice.schema.v01.AgentsRunningProbeList agentsRunningProbeList, - @WebParam(partName = "DNSProbeMaster", name = "DNSProbeMaster") - com.neustar.ultraservice.schema.v01.DNSProbeMaster dnsProbeMaster - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String addMailMXBacker( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status convertMonitoredRDPool( - @WebParam(partName = "conversionInfo", name = "conversionInfo") - com.neustar.ultraservice.schema.v01.MonitoredRDPoolConversionInfo conversionInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String changeRDRecordPriority( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "rdPoolRecId", name = "rdPoolRecId") - java.lang.String rdPoolRecId, - @WebParam(partName = "newPriority", name = "newPriority") - java.lang.String newPriority - ) throws UltraWSException_Exception; - - @WebResult(name = "ResourceRecordGUIDList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ResourceRecordGUIDList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordGUIDList getResourceRecordGUIDList( - @WebParam(partName = "resourceRecord", name = "resourceRecord") - com.neustar.ultraservice.schema.v01.ResourceRecordToSearch resourceRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "ResourceRecordTemplate", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ResourceRecordTemplate") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordTemplate getResourceRecordTemplate( - @WebParam(partName = "recordType", name = "recordType") - java.lang.String recordType - ) throws UltraWSException_Exception; - - @WebResult(name = "SBAgentsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "SBAgentsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.SBAgentsList getSBAgentsForRegionName( - @WebParam(partName = "regionName", name = "regionName") - java.lang.String regionName, - @WebParam(partName = "probeName", name = "probeName") - java.lang.String probeName - ) throws UltraWSException_Exception; - - @WebResult(name = "DirPoolID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirPoolID") - @WebMethod - public java.lang.String createDirectionalPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType, - @WebParam(partName = "rrGuid", name = "rrGuid") - java.lang.String rrGuid, - @WebParam(partName = "createRegionGrouping", name = "createRegionGrouping") - java.lang.String createRegionGrouping, - @WebParam(partName = "CopyDirectionalGroup", name = "CopyDirectionalGroup") - com.neustar.ultraservice.schema.v01.CopyDirectionalGroup copyDirectionalGroup, - @WebParam(partName = "DirectionalDNSGroupDetail", name = "DirectionalDNSGroupDetail") - com.neustar.ultraservice.schema.v01.DirectionalDNSGroupDetail directionalDNSGroupDetail - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public com.neustar.ultraservice.schema.v01.NameServerIPs getPrimaryNameServerIPs( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "AliasedDomainInfo", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AliasedDomainInfo") - @WebMethod - public com.neustar.ultraservice.schema.v01.AliasedDomainInfo getWHOISInfoForDomain( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "ProbesList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ProbesList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbesList getProbesOfPool( - @WebParam(partName = "poolID", name = "poolID") - java.lang.String poolID, - @WebParam(partName = "probeType", name = "probeType") - com.neustar.ultraservice.schema.v01.ProbeType probeType, - @WebParam(partName = "sortBy", name = "sortBy") - java.lang.String sortBy - ) throws UltraWSException_Exception; - - @WebResult(name = "TaskStatusList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "TaskStatusList") - @WebMethod - public com.neustar.ultraservice.schema.v01.TaskStatusList getAllTasks() throws UltraWSException_Exception; - - @WebResult(name = "poolProbeID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "poolProbeID") - @WebMethod - public java.lang.String addPoolProbe( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolID", name = "poolID") - java.lang.String poolID, - @WebParam(partName = "poolRecordID", name = "poolRecordID") - java.lang.String poolRecordID, - @WebParam(partName = "probeDataType", name = "probeDataType") - java.lang.String probeDataType, - @WebParam(partName = "probeInterval", name = "probeInterval") - java.lang.String probeInterval, - @WebParam(partName = "agentThreshold", name = "agentThreshold") - java.lang.String agentThreshold, - @WebParam(partName = "agentsRunningProbeList", name = "agentsRunningProbeList") - com.neustar.ultraservice.schema.v01.AgentsRunningProbeList agentsRunningProbeList, - @WebParam(partName = "DNSProbeMaster", name = "DNSProbeMaster") - com.neustar.ultraservice.schema.v01.DNSProbeMaster dnsProbeMaster - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String removeRestrictIP( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "startIP", name = "startIP") - java.lang.String startIP, - @WebParam(partName = "endIP", name = "endIP") - java.lang.String endIP - ) throws UltraWSException_Exception; - - @WebResult(name = "GeneralZoneProperties", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "GeneralZoneProperties") - @WebMethod - public com.neustar.ultraservice.schema.v01.GeneralZoneProperties getGeneralPropertiesForZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String setAccountsNotificationStatus( - @WebParam(partName = "accountLevelNotificationList", name = "accountLevelNotificationList") - com.neustar.ultraservice.schema.v01.AccountLevelNotificationsList accountLevelNotificationList - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteARPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "poolName", name = "poolName") - java.lang.String poolName - ) throws UltraWSException_Exception; - - @WebResult(name = "SimpleFailoverPool", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "SimpleFailoverPool") - @WebMethod - public com.neustar.ultraservice.schema.v01.SimpleFailoverPool getSimpleFailoverPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName - ) throws UltraWSException_Exception; - - @WebResult(name = "WebFwdRecordsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "WebFwdRecordsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.WebFwdRecordsList queryWebForwards( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateDirectionalPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "UpdateDirectionalPoolData", name = "UpdateDirectionalPoolData") - com.neustar.ultraservice.schema.v01.UpdateDirectionalPoolData updateDirectionalPoolData - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteWebForwardPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateLBPool( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "lbPoolID", name = "lbPoolID") - java.lang.String lbPoolID, - @WebParam(partName = "description", name = "description") - java.lang.String description, - @WebParam(partName = "failOver", name = "failOver") - java.lang.String failOver, - @WebParam(partName = "probing", name = "probing") - java.lang.String probing, - @WebParam(partName = "maxActive", name = "maxActive") - java.lang.String maxActive, - @WebParam(partName = "poolType", name = "poolType") - java.lang.String poolType - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteRecordOfRRPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status failoverSimpleFailoverPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public boolean unsignZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebMethod - public void updateAccountNameInfo( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "accountID", mode = WebParam.Mode.INOUT, name = "accountID") - javax.xml.ws.Holder accountID, - @WebParam(partName = "accountName", name = "accountName") - java.lang.String accountName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateResourceRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "resourceRecord", name = "resourceRecord") - com.neustar.ultraservice.schema.v01.ResourceRecordToUpdate resourceRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String addPoolNotificationOfEmail( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "poolID", name = "poolID") - java.lang.String poolID, - @WebParam(partName = "email", name = "email") - java.lang.String email - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public boolean queryPendingChanges( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARAllFailPoolRecord( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordId id, - @WebParam(partName = "update", name = "update") - com.neustar.ultraservice.schema.v01.PoolRecordUpdate update - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status clearTask( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.TaskId id - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status convertRDPool( - @WebParam(partName = "rDPoolConversionInfo", name = "rDPoolConversionInfo") - com.neustar.ultraservice.schema.v01.RDPoolConversionInfo rDPoolConversionInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String createAliasZone( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "parentZoneName", name = "parentZoneName") - java.lang.String parentZoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "NotificationList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "NotificationList") - @WebMethod - public com.neustar.ultraservice.schema.v01.NotificationList getNotificationsOfPool( - @WebParam(partName = "poolId", name = "poolId") - java.lang.String poolId - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalDNSGroupDetail", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalDNSGroupDetail") - @WebMethod - public com.neustar.ultraservice.schema.v01.DirectionalDNSGroupDetail getDirectionalDNSGroupDetails( - @WebParam(partName = "GroupId", name = "GroupId") - java.lang.String groupId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status attachContactToARPoolRule( - @WebParam(partName = "contactARPoolRuleInfo", name = "contactARPoolRuleInfo") - com.neustar.ultraservice.schema.v01.ContactARPoolRuleInfo contactARPoolRuleInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteMailForward( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "CustomHTTPHeaderDataList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "CustomHTTPHeaderDataList") - @WebMethod - public com.neustar.ultraservice.schema.v01.CustomHTTPHeaderDataList getCustomHTTPHeadersOfAccount( - @WebParam(partName = "accountID", name = "accountID") - java.lang.String accountID - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public boolean signZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String createSecondaryZone( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "isTsigEnable", name = "isTsigEnable") - boolean isTsigEnable, - @WebParam(partName = "primaryNameServer", name = "primaryNameServer") - java.lang.String primaryNameServer, - @WebParam(partName = "tsigName1", name = "tsigName1") - java.lang.String tsigName1, - @WebParam(partName = "tsigSecret1", name = "tsigSecret1") - java.lang.String tsigSecret1, - @WebParam(partName = "primaryNameServerIP2", name = "primaryNameServerIP2") - java.lang.String primaryNameServerIP2, - @WebParam(partName = "tsigName2", name = "tsigName2") - java.lang.String tsigName2, - @WebParam(partName = "tsigSecret2", name = "tsigSecret2") - java.lang.String tsigSecret2, - @WebParam(partName = "primaryNameServerIP3", name = "primaryNameServerIP3") - java.lang.String primaryNameServerIP3, - @WebParam(partName = "tsigName3", name = "tsigName3") - java.lang.String tsigName3, - @WebParam(partName = "tsigSecret3", name = "tsigSecret3") - java.lang.String tsigSecret3 - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteARAllFailPoolRecord( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordId id - ) throws UltraWSException_Exception; - - @WebResult(name = "ScheduledEvent", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ScheduledEvent") - @WebMethod - public com.neustar.ultraservice.schema.v01.ScheduledEvent getScheduledEventDetailById( - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "AccountInfoData", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AccountInfoData") - @WebMethod - public com.neustar.ultraservice.schema.v01.AccountInfoData getAccountInfoDetails( - @WebParam(partName = "accountName", name = "accountName") - java.lang.String accountName - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateSimpleFailoverPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "simpleFailoverPoolUpdate", name = "simpleFailoverPoolUpdate") - com.neustar.ultraservice.schema.v01.SimpleFailoverPoolUpdate simpleFailoverPoolUpdate - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updatePoolNotificationOfEmail( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "poolId", name = "poolId") - java.lang.String poolId, - @WebParam(partName = "poolNotifyId", name = "poolNotifyId") - java.lang.String poolNotifyId, - @WebParam(partName = "notifyRecordList", name = "notifyRecordList") - com.neustar.ultraservice.schema.v01.NotifyRecordList notifyRecordList - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateLBPoolRD( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "lbPoolID", name = "lbPoolID") - java.lang.String lbPoolID, - @WebParam(partName = "description", name = "description") - java.lang.String description, - @WebParam(partName = "failOver", name = "failOver") - java.lang.String failOver, - @WebParam(partName = "probing", name = "probing") - java.lang.String probing, - @WebParam(partName = "responseMethod", name = "responseMethod") - java.lang.String responseMethod, - @WebParam(partName = "maxResponse", name = "maxResponse") - java.lang.String maxResponse, - @WebParam(partName = "maxActive", name = "maxActive") - java.lang.String maxActive, - @WebParam(partName = "poolType", name = "poolType") - java.lang.String poolType - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String addRestrictIP( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "startIP", name = "startIP") - java.lang.String startIP, - @WebParam(partName = "endIP", name = "endIP") - java.lang.String endIP, - @WebParam(partName = "tsigKey", name = "tsigKey") - java.lang.String tsigKey, - @WebParam(partName = "tsigKeyValue", name = "tsigKeyValue") - java.lang.String tsigKeyValue, - @WebParam(partName = "comment", name = "comment") - java.lang.String comment - ) throws UltraWSException_Exception; - - @WebResult(name = "Rules", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Rules") - @WebMethod - public com.neustar.ultraservice.schema.v01.Rules getPoolConfigurationRules( - @WebParam(partName = "poolName", name = "poolName") - java.lang.String poolName, - @WebParam(partName = "configurationName", name = "configurationName") - java.lang.String configurationName - ) throws UltraWSException_Exception; - - @WebResult(name = "PoolRecordSpecData", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "PoolRecordSpecData") - @WebMethod - public com.neustar.ultraservice.schema.v01.PoolRecordSpecData getPoolRecordSpec( - @WebParam(partName = "poolRecordId", name = "poolRecordId") - java.lang.String poolRecordId - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String getNumberOfRegionsUndefinedForHost( - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "rrType", name = "rrType") - java.lang.String rrType - ) throws UltraWSException_Exception; - - @WebResult(name = "SBRegionsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "SBRegionsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.SBRegionsList getSBRegions() throws UltraWSException_Exception; - - @WebResult(name = "ARProbeDefinitionList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ARProbeDefinitionList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbeDefinitionList getARProbeDefinitions( - @WebParam(partName = "accountName", name = "accountName") - java.lang.String accountName - ) throws UltraWSException_Exception; - - @WebResult(name = "UltraZone", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "UltraZone") - @WebMethod - public com.neustar.ultraservice.schema.v01.UltraZone getZoneInfo( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deletePoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolRecordID", name = "poolRecordID") - java.lang.String poolRecordID, - @WebParam(partName = "parentPoolId", name = "parentPoolId") - java.lang.String parentPoolId, - @WebParam(partName = "childPoolId", name = "childPoolId") - java.lang.String childPoolId - ) throws UltraWSException_Exception; - - @WebResult(name = "guid", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "guid") - @WebMethod - public java.lang.String createNoneResourceRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "resourceRecord", name = "resourceRecord") - com.neustar.ultraservice.schema.v01.ResourceRecordToCreate resourceRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteSimpleFailoverPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName - ) throws UltraWSException_Exception; - - @WebResult(name = "ResourceRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ResourceRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordList getRRPoolRecords( - @WebParam(partName = "lbPoolId", name = "lbPoolId") - java.lang.String lbPoolId - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String setGeneralNotificationStatus( - @WebParam(partName = "GeneralNotificationStatusList", name = "GeneralNotificationStatusList") - com.neustar.ultraservice.schema.v01.GeneralNotificationStatusList generalNotificationStatusList - ) throws UltraWSException_Exception; - - @WebResult(name = "SimpleFailoverPoolList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "SimpleFailoverPoolList") - @WebMethod - public com.neustar.ultraservice.schema.v01.SimpleFailoverPoolList getAllSimpleFailoverPools( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "poolListParams", name = "poolListParams") - com.neustar.ultraservice.schema.v01.PoolListParams poolListParams - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateDirectionalPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "UpdateDirectionalRecordData", name = "UpdateDirectionalRecordData") - com.neustar.ultraservice.schema.v01.UpdateDirectionalRecordData updateDirectionalRecordData - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteAccountLevelDirectionalGroup( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "GroupId", name = "GroupId") - java.lang.String groupId - ) throws UltraWSException_Exception; - - @WebResult(name = "NeustarNetworkStatus", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "NeustarNetworkStatus") - @WebMethod - public java.lang.String getNeustarNetworkStatus() throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addARPoolRecordProbe( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordId id, - @WebParam(partName = "probe", name = "probe") - com.neustar.ultraservice.schema.v01.Probe probe - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addMonitoredRDPool( - @WebParam(partName = "monitoredRDPool", name = "monitoredRDPool") - com.neustar.ultraservice.schema.v01.MonitoredRDPoolAdd monitoredRDPool - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String promoteSecondaryZoneToPrimaryZone( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateMailForward( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid, - @WebParam(partName = "emailTo", name = "emailTo") - java.lang.String emailTo, - @WebParam(partName = "forwardTo", name = "forwardTo") - java.lang.String forwardTo - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateDirectionalDNSGroup( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "dirPoolRecordId", name = "dirPoolRecordId") - java.lang.String dirPoolRecordId, - @WebParam(partName = "DirectionalDNSGroupDetail", name = "DirectionalDNSGroupDetail") - com.neustar.ultraservice.schema.v01.DirectionalDNSGroupDetail directionalDNSGroupDetail - ) throws UltraWSException_Exception; - - @WebResult(name = "AllStatesList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AllStatesList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AllStatesList getStatesByCountry( - @WebParam(partName = "countryId", name = "countryId") - long countryId - ) throws UltraWSException_Exception; - - @WebResult(name = "DomainAlertsOfUser", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DomainAlertsOfUser") - @WebMethod - public com.neustar.ultraservice.schema.v01.AlertSummaryList getDomainAlertsOfUser() throws UltraWSException_Exception; - - @WebResult(name = "DirectionalDNSRecordDetailList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalDNSRecordDetailList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DirectionalDNSRecordDetailList getDirectionalDNSRecordsForAcctLvlGroup( - @WebParam(partName = "groupId", name = "groupId") - java.lang.String groupId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addARPoolRecord( - @WebParam(partName = "poolRecord", name = "poolRecord") - com.neustar.ultraservice.schema.v01.ARPoolRecord poolRecord - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public com.neustar.ultraservice.schema.v01.ZoneInfoList getRegistrarForDomain( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "ProbeAlertsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ProbeAlertsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbeAlertsList getProbeAlerts( - @WebParam(partName = "poolId", name = "poolId") - java.lang.String poolId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteARProbeDefinition( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.ProbeDefinitionId id - ) throws UltraWSException_Exception; - - @WebResult(name = "RRPoolID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "RRPoolID") - @WebMethod - public java.lang.String addRRLBPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "description", name = "description") - java.lang.String description, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType, - @WebParam(partName = "rrGUID", name = "rrGUID") - java.lang.String rrGUID - ) throws UltraWSException_Exception; - - @WebResult(name = "WebForwardPoolRecordDataList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "WebForwardPoolRecordDataList") - @WebMethod - public com.neustar.ultraservice.schema.v01.WebForwardPoolRecordDataList getWebForwardPoolRecords( - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "ARProbeDefinitionList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ARProbeDefinitionList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbeDefinitionList getARProbeDefinition( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.ProbeDefinitionId id - ) throws UltraWSException_Exception; - - @WebResult(name = "UserDetails", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "UserDetails") - @WebMethod - public com.neustar.ultraservice.schema.v01.UserDetailsPermissionData getUserDetails( - @WebParam(partName = "userName", name = "userName") - java.lang.String userName, - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteMailBlock( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String saveAccountPreferences( - @WebParam(partName = "accountID", name = "accountID") - java.lang.String accountID, - @WebParam(partName = "accountPreferencesList", name = "accountPreferencesList") - com.neustar.ultraservice.schema.v01.AccountPreferencesList accountPreferencesList, - @WebParam(partName = "safeUpdateEnabled", name = "safeUpdateEnabled") - boolean safeUpdateEnabled, - @WebParam(partName = "safeUpdateDuration", name = "safeUpdateDuration") - java.lang.String safeUpdateDuration - ) throws UltraWSException_Exception; - - @WebResult(name = "ScheduledEventList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ScheduledEventList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ScheduledEventList getScheduledEventsOfPool( - @WebParam(partName = "poolId", name = "poolId") - java.lang.String poolId, - @WebParam(partName = "sortBy", name = "sortBy") - java.lang.String sortBy - ) throws UltraWSException_Exception; - - @WebResult(name = "DnssecKeyRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DnssecKeyRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DnssecKeyRecordList getDnssecKeyRecordList( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "dnssecKeyType", name = "dnssecKeyType") - java.lang.String dnssecKeyType - ) throws UltraWSException_Exception; - - @WebResult(name = "SBTCAlertsOfUser", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "SBTCAlertsOfUser") - @WebMethod - public com.neustar.ultraservice.schema.v01.AlertSummaryList getSBTCAlertsOfUser() throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status detachContactToARPoolRule( - @WebParam(partName = "contactARPoolRuleInfo", name = "contactARPoolRuleInfo") - com.neustar.ultraservice.schema.v01.ContactARPoolRuleInfo contactARPoolRuleInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateAddressBookEntry( - @WebParam(partName = "addressBookEntry", name = "addressBookEntry") - com.neustar.ultraservice.schema.v01.AddressBookEntry addressBookEntry - ) throws UltraWSException_Exception; - - @WebResult(name = "AccountDetailsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AccountDetailsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AccountDetailsList getAccountDetailsOfUser( - @WebParam(partName = "sortBy", name = "sortBy") - java.lang.String sortBy, - @WebParam(partName = "sortOrder", name = "sortOrder") - java.lang.String sortOrder - ) throws UltraWSException_Exception; - - @WebResult(name = "accountLevelNotificationList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "accountLevelNotificationList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AccountLevelNotificationsList getAccountsNotificationStatus() throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteScheduledEvent( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalDNSRecordDetailList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalDNSRecordDetailList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DirectionalDNSRecordDetailList getDirectionalDNSRecordsForHost( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String setUserDefaultPreferences( - @WebParam(partName = "userDefaultPreferences", name = "userDefaultPreferences") - com.neustar.ultraservice.schema.v01.UserDefaultPreferences userDefaultPreferences - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateAccountLevelDirectionalGroup( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "GlobalDirectionalGroupUpdateDetails", name = "GlobalDirectionalGroupUpdateDetails") - com.neustar.ultraservice.schema.v01.GlobalDirectionalGroupUpdateDetails globalDirectionalGroupUpdateDetails - ) throws UltraWSException_Exception; - - @WebResult(name = "MonitoredRDPools", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "MonitoredRDPools") - @WebMethod - public com.neustar.ultraservice.schema.v01.MonitoredRDPools getAllMonitoredRDPools( - @WebParam(partName = "monitoredRDPoolListKey", name = "monitoredRDPoolListKey") - com.neustar.ultraservice.schema.v01.MonitoredRDPoolListKey monitoredRDPoolListKey - ) throws UltraWSException_Exception; - - @WebResult(name = "LBPoolList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "LBPoolList") - @WebMethod - public com.neustar.ultraservice.schema.v01.LBPoolList getLoadBalancingPoolsByZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "lbPoolType", name = "lbPoolType") - java.lang.String lbPoolType - ) throws UltraWSException_Exception; - - @WebResult(name = "TaskStatus", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "TaskStatus") - @WebMethod - public com.neustar.ultraservice.schema.v01.TaskStatus getStatusForTask( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.TaskId id - ) throws UltraWSException_Exception; - - @WebResult(name = "ARProbeDefinitionList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ARProbeDefinitionList") - @WebMethod - public com.neustar.ultraservice.schema.v01.PoolConfigurationList getARPoolConfigurationsByPoolName( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolId id - ) throws UltraWSException_Exception; - - @WebResult(name = "ProbeInfo", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ProbeInfo") - @WebMethod - public com.neustar.ultraservice.schema.v01.ProbeInfo getProbeByID( - @WebParam(partName = "poolProbeID", name = "poolProbeID") - java.lang.String poolProbeID - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String setRecordTypeOrderPreference( - @WebParam(partName = "ResourceRecordTypeOrderInfoList", name = "ResourceRecordTypeOrderInfoList") - com.neustar.ultraservice.schema.v01.ResourceRecordTypeOrderInfoList resourceRecordTypeOrderInfoList - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addARProbeDefinition( - @WebParam(partName = "accountName", name = "accountName") - java.lang.String accountName, - @WebParam(partName = "probeDefinition", name = "probeDefinition") - com.neustar.ultraservice.schema.v01.ProbeDefinition probeDefinition - ) throws UltraWSException_Exception; - - @WebResult(name = "RRPoolID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "RRPoolID") - @WebMethod - public java.lang.String addRDLBPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "description", name = "description") - java.lang.String description, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType, - @WebParam(partName = "responseMethod", name = "responseMethod") - java.lang.String responseMethod, - @WebParam(partName = "rrGUID", name = "rrGUID") - java.lang.String rrGUID - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addARPool( - @WebParam(partName = "pool", name = "pool") - com.neustar.ultraservice.schema.v01.Pool pool - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status deleteARPoolRecord( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordId id - ) throws UltraWSException_Exception; - - @WebResult(name = "ResourceRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ResourceRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordList getResourceRecordsOfZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "rrType", name = "rrType") - int rrType - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteDirectionalPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "dirPoolID", name = "dirPoolID") - java.lang.String dirPoolID, - @WebParam(partName = "retainRecordID", name = "retainRecordID") - java.lang.String retainRecordID - ) throws UltraWSException_Exception; - - @WebResult(name = "NameServer", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "NameServer") - @WebMethod - public com.neustar.ultraservice.schema.v01.NameServerList getNameServers( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateSecondaryZone( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "isTsigEnable", name = "isTsigEnable") - boolean isTsigEnable, - @WebParam(partName = "primaryNameServer", name = "primaryNameServer") - java.lang.String primaryNameServer, - @WebParam(partName = "tsigName1", name = "tsigName1") - java.lang.String tsigName1, - @WebParam(partName = "tsigSecret1", name = "tsigSecret1") - java.lang.String tsigSecret1, - @WebParam(partName = "primaryNameServerIP2", name = "primaryNameServerIP2") - java.lang.String primaryNameServerIP2, - @WebParam(partName = "tsigName2", name = "tsigName2") - java.lang.String tsigName2, - @WebParam(partName = "tsigSecret2", name = "tsigSecret2") - java.lang.String tsigSecret2, - @WebParam(partName = "primaryNameServerIP3", name = "primaryNameServerIP3") - java.lang.String primaryNameServerIP3, - @WebParam(partName = "tsigName3", name = "tsigName3") - java.lang.String tsigName3, - @WebParam(partName = "tsigSecret3", name = "tsigSecret3") - java.lang.String tsigSecret3, - @WebParam(partName = "notificationEmail", name = "notificationEmail") - java.lang.String notificationEmail - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String addMailBlock( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "emailTo", name = "emailTo") - java.lang.String emailTo - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addCustomHTTPHeaderToAccount( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "CustomHTTPHeaderData", name = "CustomHTTPHeaderData") - com.neustar.ultraservice.schema.v01.CustomHTTPHeaderData customHTTPHeaderData - ) throws UltraWSException_Exception; - - @WebResult(name = "AllCountriesList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AllCountriesList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AllCountriesList getAllCountries() throws UltraWSException_Exception; - - @WebResult(name = "TCPoolID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "TCPoolID") - @WebMethod - public java.lang.String addTCLBPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType, - @WebParam(partName = "description", name = "description") - java.lang.String description, - @WebParam(partName = "failOver", name = "failOver") - java.lang.String failOver, - @WebParam(partName = "probing", name = "probing") - java.lang.String probing, - @WebParam(partName = "maxActive", name = "maxActive") - java.lang.String maxActive, - @WebParam(partName = "rrGUID", name = "rrGUID") - java.lang.String rrGUID - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String setDashboardTypeOrderPreference( - @WebParam(partName = "DashBoardTypeOrderList", name = "DashBoardTypeOrderList") - com.neustar.ultraservice.schema.v01.DashboardTypeOrderInfoList dashBoardTypeOrderList - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateWebForward( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid, - @WebParam(partName = "requestTo", name = "requestTo") - java.lang.String requestTo, - @WebParam(partName = "redirectTo", name = "redirectTo") - java.lang.String redirectTo, - @WebParam(partName = "forwardType", name = "forwardType") - java.lang.String forwardType - ) throws UltraWSException_Exception; - - @WebResult(name = "UserSummary", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "UserSummary") - @WebMethod - public com.neustar.ultraservice.schema.v01.UserSummaryList getServicePackageOfUser( - @WebParam(partName = "userName", name = "userName") - java.lang.String userName, - @WebParam(partName = "accountID", name = "accountID") - java.lang.String accountID - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalPoolList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalPoolList") - @WebMethod - public com.neustar.ultraservice.schema.v01.DirectionalPoolList getDirectionalPoolsOfZone( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebMethod - public void updateAccountAddressInfo( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "accountID", mode = WebParam.Mode.INOUT, name = "accountID") - javax.xml.ws.Holder accountID, - @WebParam(partName = "accountType", name = "accountType") - java.lang.String accountType, - @WebParam(partName = "accountAddressInfo", name = "accountAddressInfo") - com.neustar.ultraservice.schema.v01.AccountAddressInfo accountAddressInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String getLostUserID( - @WebParam(partName = "mailID", name = "mailID") - java.lang.String mailID - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateMonitoredRDPool( - @WebParam(partName = "monitoredRDPool", name = "monitoredRDPool") - com.neustar.ultraservice.schema.v01.MonitoredRDPoolUpdate monitoredRDPool - ) throws UltraWSException_Exception; - - @WebResult(name = "ScheduledEventList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ScheduledEventList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ScheduledEventList getScheduledEvents( - @WebParam(partName = "poolRecordId", name = "poolRecordId") - java.lang.String poolRecordId, - @WebParam(partName = "sortBy", name = "sortBy") - java.lang.String sortBy - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String commitTransaction( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARPool( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "poolName", name = "poolName") - java.lang.String poolName, - @WebParam(partName = "update", name = "update") - com.neustar.ultraservice.schema.v01.PoolUpdate update - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String addMailForward( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "emailTo", name = "emailTo") - java.lang.String emailTo, - @WebParam(partName = "forwardTo", name = "forwardTo") - java.lang.String forwardTo, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status convertSimpleFailoverPool( - @WebParam(partName = "SimpleFailoverConversionInfo", name = "SimpleFailoverConversionInfo") - com.neustar.ultraservice.schema.v01.SimpleFailoverConversionInfo simpleFailoverConversionInfo - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public com.neustar.ultraservice.schema.v01.ZoneTransferStatus createPrimaryZoneByZoneTransfer( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "primaryNameServer", name = "primaryNameServer") - java.lang.String primaryNameServer, - @WebParam(partName = "tsigName1", name = "tsigName1") - java.lang.String tsigName1, - @WebParam(partName = "tsigSecret1", name = "tsigSecret1") - java.lang.String tsigSecret1, - @WebParam(partName = "tsigEnable", name = "tsigEnable") - boolean tsigEnable - ) throws UltraWSException_Exception; - - @WebResult(name = "AccountPreferencesList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "AccountPreferencesList") - @WebMethod - public com.neustar.ultraservice.schema.v01.AccountPreferencesList getAccountPreferencesDetails( - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateCustomHTTPHeaderToAccount( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "CustomHTTPHeaderData", name = "CustomHTTPHeaderData") - com.neustar.ultraservice.schema.v01.UpdateCustomHTTPHeaderData customHTTPHeaderData - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateWebForwardPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "WebForwardPoolRecordData", name = "WebForwardPoolRecordData") - com.neustar.ultraservice.schema.v01.UpdateWebForwardPoolRecordData webForwardPoolRecordData - ) throws UltraWSException_Exception; - - @WebResult(name = "LBPoolData", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "LBPoolData") - @WebMethod - public com.neustar.ultraservice.schema.v01.LBPoolData getPoolForPoolHostName( - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName - ) throws UltraWSException_Exception; - - @WebResult(name = "PoolRecordsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "PoolRecordsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.PoolRecordsList getPoolRecords( - @WebParam(partName = "poolId", name = "poolId") - java.lang.String poolId - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String updateScheduleEvent( - @WebParam(partName = "transactionId", name = "transactionId") - java.lang.String transactionId, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid, - @WebParam(partName = "eventType", name = "eventType") - java.lang.String eventType, - @WebParam(partName = "eventStartDate", name = "eventStartDate") - java.lang.String eventStartDate, - @WebParam(partName = "eventStartTime", name = "eventStartTime") - java.lang.String eventStartTime, - @WebParam(partName = "eventEndDate", name = "eventEndDate") - java.lang.String eventEndDate, - @WebParam(partName = "eventEndTime", name = "eventEndTime") - java.lang.String eventEndTime, - @WebParam(partName = "recurrenceEnd", name = "recurrenceEnd") - java.lang.String recurrenceEnd, - @WebParam(partName = "interval", name = "interval") - java.lang.String interval, - @WebParam(partName = "notifyOn", name = "notifyOn") - java.lang.String notifyOn - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteDirectionalPoolRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "dirPoolRecordId", name = "dirPoolRecordId") - java.lang.String dirPoolRecordId - ) throws UltraWSException_Exception; - - @WebResult(name = "PoolDetailsList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "PoolDetailsList") - @WebMethod - public com.neustar.ultraservice.schema.v01.PoolDetailsList getAllARPools( - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "poolListParams", name = "poolListParams") - com.neustar.ultraservice.schema.v01.PoolListParams poolListParams - ) throws UltraWSException_Exception; - - @WebResult(name = "GeneralNotificationStatusList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "GeneralNotificationStatusList") - @WebMethod - public com.neustar.ultraservice.schema.v01.GeneralNotificationStatusList getGeneralNotificationStatus() throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String addWebForward( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "requestTo", name = "requestTo") - java.lang.String requestTo, - @WebParam(partName = "redirectTo", name = "redirectTo") - java.lang.String redirectTo, - @WebParam(partName = "forwardType", name = "forwardType") - java.lang.String forwardType, - @WebParam(partName = "advanced", name = "advanced") - boolean advanced, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String deleteResourceRecord( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "guid", name = "guid") - java.lang.String guid - ) throws UltraWSException_Exception; - - @WebResult(name = "DirPoolID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirPoolID") - @WebMethod - public java.lang.String addDirectionalPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "AddDirectionalPoolData", name = "AddDirectionalPoolData") - com.neustar.ultraservice.schema.v01.AddDirectionalPoolData addDirectionalPoolData - ) throws UltraWSException_Exception; - - @WebResult(name = "DashboardTypeOrderList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DashboardTypeOrderList") - @WebMethod - public com.neustar.ultraservice.schema.v01.ResourceRecordTypeOrderInfoList getRecordTypeOrderPreference() throws UltraWSException_Exception; - - @WebResult(name = "NameServerRecordList", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "NameServerRecordList") - @WebMethod - public com.neustar.ultraservice.schema.v01.NameServers getNameServersDetails( - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status updateARPoolRecord( - @WebParam(partName = "id", name = "id") - com.neustar.ultraservice.schema.v01.PoolRecordId id, - @WebParam(partName = "update", name = "update") - com.neustar.ultraservice.schema.v01.PoolRecordUpdate update - ) throws UltraWSException_Exception; - - @WebResult(name = "EntryLabel", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "EntryLabel") - @WebMethod - public java.lang.String addAddressBookEntry( - @WebParam(partName = "addressBookEntry", name = "addressBookEntry") - com.neustar.ultraservice.schema.v01.AddressBookEntryCreate addressBookEntry - ) throws UltraWSException_Exception; - - @WebResult(name = "DirectionalDNSAvailableGroups", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "DirectionalDNSAvailableGroups") - @WebMethod - public net.java.dev.jaxb.array.StringArray getAvailableGroups( - @WebParam(partName = "poolName", name = "poolName") - java.lang.String poolName, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType, - @WebParam(partName = "accountID", name = "accountID") - java.lang.String accountID, - @WebParam(partName = "groupType", name = "groupType") - java.lang.String groupType - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public java.lang.String changeUserPassword( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "userName", name = "userName") - java.lang.String userName, - @WebParam(partName = "oldPassword", name = "oldPassword") - java.lang.String oldPassword, - @WebParam(partName = "newPassword", name = "newPassword") - java.lang.String newPassword - ) throws UltraWSException_Exception; - - @WebResult(name = "SBPoolID", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "SBPoolID") - @WebMethod - public java.lang.String addSBLBPool( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "hostName", name = "hostName") - java.lang.String hostName, - @WebParam(partName = "poolRecordType", name = "poolRecordType") - java.lang.String poolRecordType, - @WebParam(partName = "description", name = "description") - java.lang.String description, - @WebParam(partName = "failOver", name = "failOver") - java.lang.String failOver, - @WebParam(partName = "probing", name = "probing") - java.lang.String probing, - @WebParam(partName = "maxActive", name = "maxActive") - java.lang.String maxActive, - @WebParam(partName = "rrGUID", name = "rrGUID") - java.lang.String rrGUID - ) throws UltraWSException_Exception; - - @WebResult(name = "guid", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "guid") - @WebMethod - public java.lang.String scheduleEvent( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "poolRecordID", name = "poolRecordID") - java.lang.String poolRecordID, - @WebParam(partName = "eventType", name = "eventType") - java.lang.String eventType, - @WebParam(partName = "eventStartDate", name = "eventStartDate") - java.lang.String eventStartDate, - @WebParam(partName = "eventStartTime", name = "eventStartTime") - java.lang.String eventStartTime, - @WebParam(partName = "eventEndDate", name = "eventEndDate") - java.lang.String eventEndDate, - @WebParam(partName = "eventEndTime", name = "eventEndTime") - java.lang.String eventEndTime, - @WebParam(partName = "recurrenceEnd", name = "recurrenceEnd") - java.lang.String recurrenceEnd, - @WebParam(partName = "interval", name = "interval") - java.lang.String interval, - @WebParam(partName = "notifyOn", name = "notifyOn") - java.lang.String notifyOn - ) throws UltraWSException_Exception; - - @WebResult(name = "Status", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "Status") - @WebMethod - public com.neustar.ultraservice.schema.v01.Status addSimpleFailoverPool( - @WebParam(partName = "simpleFailoverPool", name = "simpleFailoverPool") - com.neustar.ultraservice.schema.v01.SimpleFailoverPoolAdd simpleFailoverPool - ) throws UltraWSException_Exception; - - @WebResult(name = "result", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "result") - @WebMethod - public com.neustar.ultraservice.schema.v01.ZoneTransferStatus createSecondaryZoneReturningTaskId( - @WebParam(partName = "transactionID", name = "transactionID") - java.lang.String transactionID, - @WebParam(partName = "accountId", name = "accountId") - java.lang.String accountId, - @WebParam(partName = "zoneName", name = "zoneName") - java.lang.String zoneName, - @WebParam(partName = "isTsigEnable", name = "isTsigEnable") - boolean isTsigEnable, - @WebParam(partName = "primaryNameServer", name = "primaryNameServer") - java.lang.String primaryNameServer, - @WebParam(partName = "tsigName1", name = "tsigName1") - java.lang.String tsigName1, - @WebParam(partName = "tsigSecret1", name = "tsigSecret1") - java.lang.String tsigSecret1, - @WebParam(partName = "primaryNameServerIP2", name = "primaryNameServerIP2") - java.lang.String primaryNameServerIP2, - @WebParam(partName = "tsigName2", name = "tsigName2") - java.lang.String tsigName2, - @WebParam(partName = "tsigSecret2", name = "tsigSecret2") - java.lang.String tsigSecret2, - @WebParam(partName = "primaryNameServerIP3", name = "primaryNameServerIP3") - java.lang.String primaryNameServerIP3, - @WebParam(partName = "tsigName3", name = "tsigName3") - java.lang.String tsigName3, - @WebParam(partName = "tsigSecret3", name = "tsigSecret3") - java.lang.String tsigSecret3, - @WebParam(partName = "notificationEmail", name = "notificationEmail") - java.lang.String notificationEmail - ) throws UltraWSException_Exception; - - @WebResult(name = "ScheduledMaintenanceAlerts", targetNamespace = "http://webservice.api.ultra.neustar.com/v01/", partName = "ScheduledMaintenanceAlerts") - @WebMethod - public com.neustar.ultraservice.schema.v01.AlertSummaryList getScheduledMaintenanceAlerts() throws UltraWSException_Exception; -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWSException.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWSException.java deleted file mode 100644 index e76c80e4f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWSException.java +++ /dev/null @@ -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; - - -/** - *

Java class for UltraWSException complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWSException_Exception.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWSException_Exception.java deleted file mode 100644 index 38ede6515..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWSException_Exception.java +++ /dev/null @@ -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; - } -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWebServiceV01Service.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWebServiceV01Service.java deleted file mode 100644 index ad5ce2cf6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/UltraWebServiceV01Service.java +++ /dev/null @@ -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 features parameter will have their default values. - * @return - * returns UltraDNS1 - */ - @WebEndpoint(name = "UltraWebServiceV01Port") - public UltraDNS1 getUltraWebServiceV01Port(WebServiceFeature... features) { - return super.getPort(UltraWebServiceV01Port, UltraDNS1.class, features); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Zone.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Zone.java deleted file mode 100644 index 543fe91a6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/Zone.java +++ /dev/null @@ -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; - - -/** - *

Java class for zone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ZoneProperties.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ZoneProperties.java deleted file mode 100644 index 1501dcdb9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ZoneProperties.java +++ /dev/null @@ -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; - - -/** - *

Java class for zoneProperties complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ZoneType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ZoneType.java deleted file mode 100644 index 1f0a12775..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/ZoneType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultra.api.webservice.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for zoneType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="zoneType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="PRIMARY"/>
- *     <enumeration value="SECONDARY"/>
- *     <enumeration value="ALIAS"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "zoneType") -@XmlEnum -public enum ZoneType { - - PRIMARY, - SECONDARY, - ALIAS; - - public String value() { - return name(); - } - - public static ZoneType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/package-info.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/package-info.java deleted file mode 100644 index fa07a8474..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultra/api/webservice/v01/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://webservice.api.ultra.neustar.com/v01/") -package com.neustar.ultra.api.webservice.v01; diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/AccountSegmentMapStatusType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/AccountSegmentMapStatusType.java deleted file mode 100644 index 936ee045c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/AccountSegmentMapStatusType.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountSegmentMapStatusType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="AccountSegmentMapStatusType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Pending"/>
- *     <enumeration value="Active"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/ObjectFactory.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/ObjectFactory.java deleted file mode 100644 index ef607d79e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/ObjectFactory.java +++ /dev/null @@ -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. - *

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() { - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARAlertRuleDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARAlertRuleDetails.java deleted file mode 100644 index 2fb697a74..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARAlertRuleDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARAlertRuleDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARAlertStateDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARAlertStateDetails.java deleted file mode 100644 index 4b612582c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARAlertStateDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARAlertStateDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlert.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlert.java deleted file mode 100644 index 6a1f02487..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlert.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolAlert complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlerts.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlerts.java deleted file mode 100644 index 16afd46d2..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlerts.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolAlerts complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ARPoolAlerts", propOrder = { - "poolAlert" -}) -public class ARPoolAlerts { - - @XmlElement(required = true) - protected List poolAlert; - - /** - * Gets the value of the poolAlert property. - * - *

- * 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 set method for the poolAlert property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolAlert().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ARPoolAlert } - * - * - */ - public List getPoolAlert() { - if (poolAlert == null) { - poolAlert = new ArrayList(); - } - return this.poolAlert; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlertsKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlertsKey.java deleted file mode 100644 index 1dc420c4c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlertsKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolAlertsKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlertsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlertsList.java deleted file mode 100644 index 8f5418d97..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolAlertsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolAlertsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolConfigurationKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolConfigurationKey.java deleted file mode 100644 index 8d8a8ce2f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolConfigurationKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolConfigurationKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolConfigurationUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolConfigurationUpdate.java deleted file mode 100644 index 370aa617e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolConfigurationUpdate.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolConfigurationUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolProbeList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolProbeList.java deleted file mode 100644 index df10fde7d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolProbeList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolProbeList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolProbes.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolProbes.java deleted file mode 100644 index a7bb419cb..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolProbes.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolProbes complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ARPoolProbes", propOrder = { - "arPoolProbe" -}) -public class ARPoolProbes { - - protected List arPoolProbe; - - /** - * Gets the value of the arPoolProbe property. - * - *

- * 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 set method for the arPoolProbe property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getArPoolProbe().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ARProbeInfo } - * - * - */ - public List getArPoolProbe() { - if (arPoolProbe == null) { - arPoolProbe = new ArrayList(); - } - return this.arPoolProbe; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecord.java deleted file mode 100644 index fb5f71ebf..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecordListKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecordListKey.java deleted file mode 100644 index a28d87f78..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecordListKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolRecordListKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecords.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecords.java deleted file mode 100644 index 03e36e498..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecords.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolRecords complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ARPoolRecords", propOrder = { - "poolRecord" -}) -public class ARPoolRecords { - - protected List poolRecord; - - /** - * Gets the value of the poolRecord property. - * - *

- * 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 set method for the poolRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolRecord } - * - * - */ - public List getPoolRecord() { - if (poolRecord == null) { - poolRecord = new ArrayList(); - } - return this.poolRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecordsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecordsList.java deleted file mode 100644 index c222d0fbe..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRecordsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolRecordsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRuleKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRuleKey.java deleted file mode 100644 index 9e3534f7a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARPoolRuleKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARPoolRuleKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARProbeInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARProbeInfo.java deleted file mode 100644 index 2a49e354f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARProbeInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARProbeInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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 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. - * - *

- * 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 set method for the regions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRegions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getRegions() { - if (regions == null) { - regions = new ArrayList(); - } - 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARStatusEnum.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARStatusEnum.java deleted file mode 100644 index 60a5c17ca..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARStatusEnum.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ARStatusEnum. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ARStatusEnum">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="FAIL"/>
- *     <enumeration value="MANUAL"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ARStatusEnum") -@XmlEnum -public enum ARStatusEnum { - - OK, - FAIL, - MANUAL; - - public String value() { - return name(); - } - - public static ARStatusEnum fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARecord.java deleted file mode 100644 index 5f74e7b59..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ARecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for ARecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountAddressInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountAddressInfo.java deleted file mode 100644 index cfdec5c4e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountAddressInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountAddressInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountDetailsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountDetailsData.java deleted file mode 100644 index 2348eddd3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountDetailsData.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountDetailsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountDetailsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountDetailsList.java deleted file mode 100644 index 01360c5e6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountDetailsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountDetailsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountDetailsList", propOrder = { - "accountDetailsData" -}) -public class AccountDetailsList { - - @XmlElement(name = "AccountDetailsData", required = true) - protected List accountDetailsData; - - /** - * Gets the value of the accountDetailsData property. - * - *

- * 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 set method for the accountDetailsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountDetailsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountDetailsData } - * - * - */ - public List getAccountDetailsData() { - if (accountDetailsData == null) { - accountDetailsData = new ArrayList(); - } - return this.accountDetailsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountInfoData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountInfoData.java deleted file mode 100644 index 327576544..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountInfoData.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountInfoData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelGroup.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelGroup.java deleted file mode 100644 index 2e4f49b5a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelGroup.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountLevelGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelGroupsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelGroupsList.java deleted file mode 100644 index 61d9ada23..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelGroupsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountLevelGroupsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountLevelGroupsList", propOrder = { - "accountLevelGroups" -}) -public class AccountLevelGroupsList { - - @XmlElement(name = "AccountLevelGroups", required = true) - protected List accountLevelGroups; - - /** - * Gets the value of the accountLevelGroups property. - * - *

- * 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 set method for the accountLevelGroups property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountLevelGroups().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountLevelGroup } - * - * - */ - public List getAccountLevelGroups() { - if (accountLevelGroups == null) { - accountLevelGroups = new ArrayList(); - } - return this.accountLevelGroups; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelNotificationsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelNotificationsData.java deleted file mode 100644 index 47deeda01..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelNotificationsData.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountLevelNotificationsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelNotificationsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelNotificationsList.java deleted file mode 100644 index 494d15e9a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountLevelNotificationsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountLevelNotificationsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountLevelNotificationsList", propOrder = { - "accountLevelNotificationsData" -}) -public class AccountLevelNotificationsList { - - @XmlElement(name = "AccountLevelNotificationsData", required = true) - protected List accountLevelNotificationsData; - - /** - * Gets the value of the accountLevelNotificationsData property. - * - *

- * 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 set method for the accountLevelNotificationsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountLevelNotificationsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountLevelNotificationsData } - * - * - */ - public List getAccountLevelNotificationsData() { - if (accountLevelNotificationsData == null) { - accountLevelNotificationsData = new ArrayList(); - } - return this.accountLevelNotificationsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountPreferenceDetail.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountPreferenceDetail.java deleted file mode 100644 index cd202d811..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountPreferenceDetail.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountPreferenceDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountPreferencesList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountPreferencesList.java deleted file mode 100644 index 19c49140c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AccountPreferencesList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AccountPreferencesList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AccountPreferencesList", propOrder = { - "accountPreferenceDetail" -}) -public class AccountPreferencesList { - - @XmlElement(name = "AccountPreferenceDetail", required = true) - protected List accountPreferenceDetail; - - /** - * Gets the value of the accountPreferenceDetail property. - * - *

- * 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 set method for the accountPreferenceDetail property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAccountPreferenceDetail().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AccountPreferenceDetail } - * - * - */ - public List getAccountPreferenceDetail() { - if (accountPreferenceDetail == null) { - accountPreferenceDetail = new ArrayList(); - } - return this.accountPreferenceDetail; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AcctToPoolGroupConversionDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AcctToPoolGroupConversionDetails.java deleted file mode 100644 index 26e040661..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AcctToPoolGroupConversionDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for AcctToPoolGroupConversionDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddDirectionalPoolData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddDirectionalPoolData.java deleted file mode 100644 index a47563e99..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddDirectionalPoolData.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddDirectionalPoolData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddDirectionalRecordData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddDirectionalRecordData.java deleted file mode 100644 index 2f7168550..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddDirectionalRecordData.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddDirectionalRecordData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntry.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntry.java deleted file mode 100644 index f7440d89e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntry.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntry complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryCreate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryCreate.java deleted file mode 100644 index 36953ad61..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryCreate.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryCreate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryCreateKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryCreateKey.java deleted file mode 100644 index 00ac5ca89..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryCreateKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryCreateKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryGet.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryGet.java deleted file mode 100644 index c656b76a0..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryGet.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryGet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryKey.java deleted file mode 100644 index 01f50aec0..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryKeys.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryKeys.java deleted file mode 100644 index 94a0fdc34..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryKeys.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryKeys complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddressBookEntryKeys", propOrder = { - "addressBookEntryKey" -}) -public class AddressBookEntryKeys { - - @XmlElement(required = true) - protected List addressBookEntryKey; - - /** - * Gets the value of the addressBookEntryKey property. - * - *

- * 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 set method for the addressBookEntryKey property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAddressBookEntryKey().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AddressBookEntryKey } - * - * - */ - public List getAddressBookEntryKey() { - if (addressBookEntryKey == null) { - addressBookEntryKey = new ArrayList(); - } - return this.addressBookEntryKey; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryList.java deleted file mode 100644 index 133ef1ee2..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AddressBookEntryList", propOrder = { - "addressBookEntries", - "recordCount", - "startIndex" -}) -public class AddressBookEntryList { - - protected List addressBookEntries; - protected int recordCount; - protected int startIndex; - - /** - * Gets the value of the addressBookEntries property. - * - *

- * 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 set method for the addressBookEntries property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAddressBookEntries().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AddressBookEntryGet } - * - * - */ - public List getAddressBookEntries() { - if (addressBookEntries == null) { - addressBookEntries = new ArrayList(); - } - 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryListKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryListKey.java deleted file mode 100644 index 66ea79ce8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AddressBookEntryListKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for AddressBookEntryListKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AgentsRunningProbeList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AgentsRunningProbeList.java deleted file mode 100644 index c34f1e8f3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AgentsRunningProbeList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AgentsRunningProbeList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AgentsRunningProbeList", propOrder = { - "regionAndAgent" -}) -public class AgentsRunningProbeList { - - @XmlElement(required = true) - protected List regionAndAgent; - - /** - * Gets the value of the regionAndAgent property. - * - *

- * 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 set method for the regionAndAgent property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRegionAndAgent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RegionAndAgent } - * - * - */ - public List getRegionAndAgent() { - if (regionAndAgent == null) { - regionAndAgent = new ArrayList(); - } - return this.regionAndAgent; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertAllFailDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertAllFailDetails.java deleted file mode 100644 index aaa48e21b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertAllFailDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertAllFailDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertAllFailRecordsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertAllFailRecordsList.java deleted file mode 100644 index 172a0081f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertAllFailRecordsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertAllFailRecordsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AlertAllFailRecordsList", propOrder = { - "record" -}) -public class AlertAllFailRecordsList { - - @XmlElement(nillable = true) - protected List record; - - /** - * Gets the value of the record property. - * - *

- * 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 set method for the record property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AlertRecord } - * - * - */ - public List getRecord() { - if (record == null) { - record = new ArrayList(); - } - return this.record; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPoolDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPoolDetails.java deleted file mode 100644 index f03a3fbac..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPoolDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertPoolDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPoolStatus.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPoolStatus.java deleted file mode 100644 index 75335f74a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPoolStatus.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertPoolStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPrioritizedRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPrioritizedRecord.java deleted file mode 100644 index e5a0c572a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertPrioritizedRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertPrioritizedRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertProbeDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertProbeDetails.java deleted file mode 100644 index a965277ba..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertProbeDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertProbeDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertRecord.java deleted file mode 100644 index b4f9765f9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertSummaryList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertSummaryList.java deleted file mode 100644 index 23c51b512..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AlertSummaryList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AlertSummaryList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AlertSummaryList", propOrder = { - "domainAlertData", - "probeAlertsData", - "maintenanceAlertsData" -}) -public class AlertSummaryList { - - @XmlElement(name = "DomainAlertData", required = true) - protected List domainAlertData; - @XmlElement(name = "ProbeAlertsData", required = true) - protected List probeAlertsData; - @XmlElement(name = "MaintenanceAlertsData", required = true) - protected List maintenanceAlertsData; - - /** - * Gets the value of the domainAlertData property. - * - *

- * 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 set method for the domainAlertData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDomainAlertData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DomainAlertData } - * - * - */ - public List getDomainAlertData() { - if (domainAlertData == null) { - domainAlertData = new ArrayList(); - } - return this.domainAlertData; - } - - /** - * Gets the value of the probeAlertsData property. - * - *

- * 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 set method for the probeAlertsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProbeAlertsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProbeAlertsData } - * - * - */ - public List getProbeAlertsData() { - if (probeAlertsData == null) { - probeAlertsData = new ArrayList(); - } - return this.probeAlertsData; - } - - /** - * Gets the value of the maintenanceAlertsData property. - * - *

- * 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 set method for the maintenanceAlertsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMaintenanceAlertsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MaintenanceAlertsData } - * - * - */ - public List getMaintenanceAlertsData() { - if (maintenanceAlertsData == null) { - maintenanceAlertsData = new ArrayList(); - } - return this.maintenanceAlertsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AliasedDomainInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AliasedDomainInfo.java deleted file mode 100644 index 32235d6d9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AliasedDomainInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for AliasedDomainInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllCountriesList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllCountriesList.java deleted file mode 100644 index 586b1a54b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllCountriesList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AllCountriesList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AllCountriesList", propOrder = { - "countryInfo" -}) -public class AllCountriesList { - - @XmlElement(name = "CountryInfo", required = true) - protected List countryInfo; - - /** - * Gets the value of the countryInfo property. - * - *

- * 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 set method for the countryInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCountryInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CountryInfo } - * - * - */ - public List getCountryInfo() { - if (countryInfo == null) { - countryInfo = new ArrayList(); - } - return this.countryInfo; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllStatesList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllStatesList.java deleted file mode 100644 index 47e1b073a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllStatesList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AllStatesList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AllStatesList", propOrder = { - "stateInfo" -}) -public class AllStatesList { - - @XmlElement(required = true) - protected List stateInfo; - - /** - * Gets the value of the stateInfo property. - * - *

- * 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 set method for the stateInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getStateInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link StatesInfo } - * - * - */ - public List getStateInfo() { - if (stateInfo == null) { - stateInfo = new ArrayList(); - } - return this.stateInfo; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllUsersDetailsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllUsersDetailsData.java deleted file mode 100644 index f0deea4dd..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllUsersDetailsData.java +++ /dev/null @@ -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; - - -/** - *

Java class for AllUsersDetailsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllUsersDetailsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllUsersDetailsList.java deleted file mode 100644 index a68264418..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AllUsersDetailsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for AllUsersDetailsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "AllUsersDetailsList", propOrder = { - "allUsersDetailsData" -}) -public class AllUsersDetailsList { - - @XmlElement(name = "AllUsersDetailsData", required = true) - protected List allUsersDetailsData; - - /** - * Gets the value of the allUsersDetailsData property. - * - *

- * 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 set method for the allUsersDetailsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getAllUsersDetailsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AllUsersDetailsData } - * - * - */ - public List getAllUsersDetailsData() { - if (allUsersDetailsData == null) { - allUsersDetailsData = new ArrayList(); - } - return this.allUsersDetailsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AutoSerialUpdateType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AutoSerialUpdateType.java deleted file mode 100644 index da82a2e1d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AutoSerialUpdateType.java +++ /dev/null @@ -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; - - -/** - *

Java class for autoSerialUpdateType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="autoSerialUpdateType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="enable"/>
- *     <enumeration value="disable"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@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); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AutomaticPointerPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AutomaticPointerPreference.java deleted file mode 100644 index d7bba9400..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/AutomaticPointerPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for AutomaticPointerPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CNAMERecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CNAMERecord.java deleted file mode 100644 index b98f8fbd3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CNAMERecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for CNAMERecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ContactARPoolRuleInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ContactARPoolRuleInfo.java deleted file mode 100644 index a7ad7a6d4..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ContactARPoolRuleInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for ContactARPoolRuleInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CopyAssignedDirDNSGroup.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CopyAssignedDirDNSGroup.java deleted file mode 100644 index 3d51ce908..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CopyAssignedDirDNSGroup.java +++ /dev/null @@ -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; - - -/** - *

Java class for CopyAssignedDirDNSGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CopyDirectionalGroup.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CopyDirectionalGroup.java deleted file mode 100644 index c74202544..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CopyDirectionalGroup.java +++ /dev/null @@ -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; - - -/** - *

Java class for CopyDirectionalGroup complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CountryInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CountryInfo.java deleted file mode 100644 index d413d1cee..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CountryInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for CountryInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderData.java deleted file mode 100644 index 22010a464..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderData.java +++ /dev/null @@ -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; - - -/** - *

Java class for CustomHTTPHeaderData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderDataGUID.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderDataGUID.java deleted file mode 100644 index f2e8cd2a7..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderDataGUID.java +++ /dev/null @@ -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; - - -/** - *

Java class for CustomHTTPHeaderDataGUID complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <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>
- * 
- * - * - */ -@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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderDataList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderDataList.java deleted file mode 100644 index 4aa685b7b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/CustomHTTPHeaderDataList.java +++ /dev/null @@ -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; - - -/** - *

Java class for CustomHTTPHeaderDataList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="CustomHTTPHeaderDataList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="CustomHTTPHeaderData" type="{http://schema.ultraservice.neustar.com/v01/}CustomHTTPHeaderDataGUID" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "CustomHTTPHeaderDataList", propOrder = { - "customHTTPHeaderData" -}) -public class CustomHTTPHeaderDataList { - - @XmlElement(name = "CustomHTTPHeaderData", required = true) - protected List customHTTPHeaderData; - - /** - * Gets the value of the customHTTPHeaderData property. - * - *

- * 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 set method for the customHTTPHeaderData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getCustomHTTPHeaderData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link CustomHTTPHeaderDataGUID } - * - * - */ - public List getCustomHTTPHeaderData() { - if (customHTTPHeaderData == null) { - customHTTPHeaderData = new ArrayList(); - } - return this.customHTTPHeaderData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSProbeData.java deleted file mode 100644 index 400bcc0ef..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSProbeData.java +++ /dev/null @@ -1,438 +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; - - -/** - *

Java class for DNSProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNSProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="tcpOnly" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="rrType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="nameToQuery" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="response" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failResponse" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalResponse" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningResponse" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNSProbeData") -public class DNSProbeData { - - @XmlAttribute(name = "port") - protected String port; - @XmlAttribute(name = "tcpOnly") - protected String tcpOnly; - @XmlAttribute(name = "rrType") - protected String rrType; - @XmlAttribute(name = "nameToQuery") - protected String nameToQuery; - @XmlAttribute(name = "response") - protected String response; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "failResponse") - protected String failResponse; - @XmlAttribute(name = "criticalResponse") - protected String criticalResponse; - @XmlAttribute(name = "warningResponse") - protected String warningResponse; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort(String value) { - this.port = value; - } - - /** - * Gets the value of the tcpOnly property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTcpOnly() { - return tcpOnly; - } - - /** - * Sets the value of the tcpOnly property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTcpOnly(String value) { - this.tcpOnly = value; - } - - /** - * Gets the value of the rrType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRrType() { - return rrType; - } - - /** - * Sets the value of the rrType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRrType(String value) { - this.rrType = value; - } - - /** - * Gets the value of the nameToQuery property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameToQuery() { - return nameToQuery; - } - - /** - * Sets the value of the nameToQuery property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameToQuery(String value) { - this.nameToQuery = value; - } - - /** - * Gets the value of the response property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResponse() { - return response; - } - - /** - * Sets the value of the response property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResponse(String value) { - this.response = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the failResponse property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailResponse() { - return failResponse; - } - - /** - * Sets the value of the failResponse property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailResponse(String value) { - this.failResponse = value; - } - - /** - * Gets the value of the criticalResponse property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalResponse() { - return criticalResponse; - } - - /** - * Sets the value of the criticalResponse property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalResponse(String value) { - this.criticalResponse = value; - } - - /** - * Gets the value of the warningResponse property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningResponse() { - return warningResponse; - } - - /** - * Sets the value of the warningResponse property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningResponse(String value) { - this.warningResponse = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSProbeMaster.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSProbeMaster.java deleted file mode 100644 index 05807a8c3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSProbeMaster.java +++ /dev/null @@ -1,258 +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; - - -/** - *

Java class for DNSProbeMaster complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNSProbeMaster">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DNSProbeData" type="{http://schema.ultraservice.neustar.com/v01/}DNSProbeData"/>
- *         <element name="FTPProbeData" type="{http://schema.ultraservice.neustar.com/v01/}FTPProbeData"/>
- *         <element name="HTTPProbeData" type="{http://schema.ultraservice.neustar.com/v01/}HTTPProbeData"/>
- *         <element name="PINGProbeData" type="{http://schema.ultraservice.neustar.com/v01/}PINGProbeData"/>
- *         <element name="PROXYProbeData" type="{http://schema.ultraservice.neustar.com/v01/}PROXYProbeData"/>
- *         <element name="SMTPAvailabilityProbeData" type="{http://schema.ultraservice.neustar.com/v01/}SMTPAvailabilityProbeData"/>
- *         <element name="SMTPSendMailProbeData" type="{http://schema.ultraservice.neustar.com/v01/}SMTPSendMailProbeData"/>
- *         <element name="TCPProbeData" type="{http://schema.ultraservice.neustar.com/v01/}TCPProbeData"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNSProbeMaster", propOrder = { - "dnsProbeData", - "ftpProbeData", - "httpProbeData", - "pingProbeData", - "proxyProbeData", - "smtpAvailabilityProbeData", - "smtpSendMailProbeData", - "tcpProbeData" -}) -public class DNSProbeMaster { - - @XmlElement(name = "DNSProbeData", required = true) - protected DNSProbeData dnsProbeData; - @XmlElement(name = "FTPProbeData", required = true) - protected FTPProbeData ftpProbeData; - @XmlElement(name = "HTTPProbeData", required = true) - protected HTTPProbeData httpProbeData; - @XmlElement(name = "PINGProbeData", required = true) - protected PINGProbeData pingProbeData; - @XmlElement(name = "PROXYProbeData", required = true) - protected PROXYProbeData proxyProbeData; - @XmlElement(name = "SMTPAvailabilityProbeData", required = true) - protected SMTPAvailabilityProbeData smtpAvailabilityProbeData; - @XmlElement(name = "SMTPSendMailProbeData", required = true) - protected SMTPSendMailProbeData smtpSendMailProbeData; - @XmlElement(name = "TCPProbeData", required = true) - protected TCPProbeData tcpProbeData; - - /** - * Gets the value of the dnsProbeData property. - * - * @return - * possible object is - * {@link DNSProbeData } - * - */ - public DNSProbeData getDNSProbeData() { - return dnsProbeData; - } - - /** - * Sets the value of the dnsProbeData property. - * - * @param value - * allowed object is - * {@link DNSProbeData } - * - */ - public void setDNSProbeData(DNSProbeData value) { - this.dnsProbeData = value; - } - - /** - * Gets the value of the ftpProbeData property. - * - * @return - * possible object is - * {@link FTPProbeData } - * - */ - public FTPProbeData getFTPProbeData() { - return ftpProbeData; - } - - /** - * Sets the value of the ftpProbeData property. - * - * @param value - * allowed object is - * {@link FTPProbeData } - * - */ - public void setFTPProbeData(FTPProbeData value) { - this.ftpProbeData = value; - } - - /** - * Gets the value of the httpProbeData property. - * - * @return - * possible object is - * {@link HTTPProbeData } - * - */ - public HTTPProbeData getHTTPProbeData() { - return httpProbeData; - } - - /** - * Sets the value of the httpProbeData property. - * - * @param value - * allowed object is - * {@link HTTPProbeData } - * - */ - public void setHTTPProbeData(HTTPProbeData value) { - this.httpProbeData = value; - } - - /** - * Gets the value of the pingProbeData property. - * - * @return - * possible object is - * {@link PINGProbeData } - * - */ - public PINGProbeData getPINGProbeData() { - return pingProbeData; - } - - /** - * Sets the value of the pingProbeData property. - * - * @param value - * allowed object is - * {@link PINGProbeData } - * - */ - public void setPINGProbeData(PINGProbeData value) { - this.pingProbeData = value; - } - - /** - * Gets the value of the proxyProbeData property. - * - * @return - * possible object is - * {@link PROXYProbeData } - * - */ - public PROXYProbeData getPROXYProbeData() { - return proxyProbeData; - } - - /** - * Sets the value of the proxyProbeData property. - * - * @param value - * allowed object is - * {@link PROXYProbeData } - * - */ - public void setPROXYProbeData(PROXYProbeData value) { - this.proxyProbeData = value; - } - - /** - * Gets the value of the smtpAvailabilityProbeData property. - * - * @return - * possible object is - * {@link SMTPAvailabilityProbeData } - * - */ - public SMTPAvailabilityProbeData getSMTPAvailabilityProbeData() { - return smtpAvailabilityProbeData; - } - - /** - * Sets the value of the smtpAvailabilityProbeData property. - * - * @param value - * allowed object is - * {@link SMTPAvailabilityProbeData } - * - */ - public void setSMTPAvailabilityProbeData(SMTPAvailabilityProbeData value) { - this.smtpAvailabilityProbeData = value; - } - - /** - * Gets the value of the smtpSendMailProbeData property. - * - * @return - * possible object is - * {@link SMTPSendMailProbeData } - * - */ - public SMTPSendMailProbeData getSMTPSendMailProbeData() { - return smtpSendMailProbeData; - } - - /** - * Sets the value of the smtpSendMailProbeData property. - * - * @param value - * allowed object is - * {@link SMTPSendMailProbeData } - * - */ - public void setSMTPSendMailProbeData(SMTPSendMailProbeData value) { - this.smtpSendMailProbeData = value; - } - - /** - * Gets the value of the tcpProbeData property. - * - * @return - * possible object is - * {@link TCPProbeData } - * - */ - public TCPProbeData getTCPProbeData() { - return tcpProbeData; - } - - /** - * Sets the value of the tcpProbeData property. - * - * @param value - * allowed object is - * {@link TCPProbeData } - * - */ - public void setTCPProbeData(TCPProbeData value) { - this.tcpProbeData = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSTransaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSTransaction.java deleted file mode 100644 index 1a7bc9dc3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DNSTransaction.java +++ /dev/null @@ -1,223 +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; - - -/** - *

Java class for DNSTransaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DNSTransaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}DnsCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}DnsCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}DnsCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="tcp" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="recordType" type="{http://schema.ultraservice.neustar.com/v01/}RecordType" />
- *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DNSTransaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class DNSTransaction { - - protected DnsCriteria warningCriteria; - protected DnsCriteria criticalCriteria; - protected DnsCriteria failCriteria; - @XmlAttribute(name = "port") - protected Integer port; - @XmlAttribute(name = "tcp") - protected Boolean tcp; - @XmlAttribute(name = "recordType") - protected RecordType recordType; - @XmlAttribute(name = "name") - protected String name; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link DnsCriteria } - * - */ - public DnsCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link DnsCriteria } - * - */ - public void setWarningCriteria(DnsCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link DnsCriteria } - * - */ - public DnsCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link DnsCriteria } - * - */ - public void setCriticalCriteria(DnsCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link DnsCriteria } - * - */ - public DnsCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link DnsCriteria } - * - */ - public void setFailCriteria(DnsCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPort(Integer value) { - this.port = value; - } - - /** - * Gets the value of the tcp property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isTcp() { - return tcp; - } - - /** - * Sets the value of the tcp property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setTcp(Boolean value) { - this.tcp = 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; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardRecordType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardRecordType.java deleted file mode 100644 index b0e1f39c6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardRecordType.java +++ /dev/null @@ -1,60 +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; - - -/** - *

Java class for DashboardRecordType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DashboardRecordType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Recent Activity"/>
- *     <enumeration value="Alerts"/>
- *     <enumeration value="My Reports"/>
- *     <enumeration value="News"/>
- *     <enumeration value="Open Service Requests"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DashboardRecordType") -@XmlEnum -public enum DashboardRecordType { - - @XmlEnumValue("Recent Activity") - RECENT_ACTIVITY("Recent Activity"), - @XmlEnumValue("Alerts") - ALERTS("Alerts"), - @XmlEnumValue("My Reports") - MY_REPORTS("My Reports"), - @XmlEnumValue("News") - NEWS("News"), - @XmlEnumValue("Open Service Requests") - OPEN_SERVICE_REQUESTS("Open Service Requests"); - private final String value; - - DashboardRecordType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static DashboardRecordType fromValue(String v) { - for (DashboardRecordType c: DashboardRecordType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardTypeOrderInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardTypeOrderInfo.java deleted file mode 100644 index 5e4a8e380..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardTypeOrderInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for DashboardTypeOrderInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DashboardTypeOrderInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="orderNumber" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="recordType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}DashboardRecordType" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DashboardTypeOrderInfo") -public class DashboardTypeOrderInfo { - - @XmlAttribute(name = "orderNumber", required = true) - protected int orderNumber; - @XmlAttribute(name = "recordType", required = true) - protected DashboardRecordType recordType; - - /** - * Gets the value of the orderNumber property. - * - */ - public int getOrderNumber() { - return orderNumber; - } - - /** - * Sets the value of the orderNumber property. - * - */ - public void setOrderNumber(int value) { - this.orderNumber = value; - } - - /** - * Gets the value of the recordType property. - * - * @return - * possible object is - * {@link DashboardRecordType } - * - */ - public DashboardRecordType getRecordType() { - return recordType; - } - - /** - * Sets the value of the recordType property. - * - * @param value - * allowed object is - * {@link DashboardRecordType } - * - */ - public void setRecordType(DashboardRecordType value) { - this.recordType = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardTypeOrderInfoList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardTypeOrderInfoList.java deleted file mode 100644 index a5df30616..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DashboardTypeOrderInfoList.java +++ /dev/null @@ -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; - - -/** - *

Java class for DashboardTypeOrderInfoList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DashboardTypeOrderInfoList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DashboardTypeOrderInfo" type="{http://schema.ultraservice.neustar.com/v01/}DashboardTypeOrderInfo" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DashboardTypeOrderInfoList", propOrder = { - "dashboardTypeOrderInfo" -}) -public class DashboardTypeOrderInfoList { - - @XmlElement(name = "DashboardTypeOrderInfo", required = true) - protected List dashboardTypeOrderInfo; - - /** - * Gets the value of the dashboardTypeOrderInfo property. - * - *

- * 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 set method for the dashboardTypeOrderInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDashboardTypeOrderInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DashboardTypeOrderInfo } - * - * - */ - public List getDashboardTypeOrderInfo() { - if (dashboardTypeOrderInfo == null) { - dashboardTypeOrderInfo = new ArrayList(); - } - return this.dashboardTypeOrderInfo; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DateFormat.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DateFormat.java deleted file mode 100644 index 70570e225..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DateFormat.java +++ /dev/null @@ -1,63 +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; - - -/** - *

Java class for DateFormat. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DateFormat">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="MM/DD/YYYY"/>
- *     <enumeration value="MM/DD/YY"/>
- *     <enumeration value="DD/MM/YYYY"/>
- *     <enumeration value="DD/MM/YY"/>
- *     <enumeration value="YYYY/MM/DD"/>
- *     <enumeration value="YY/MM/DD"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DateFormat") -@XmlEnum -public enum DateFormat { - - @XmlEnumValue("MM/DD/YYYY") - MM_DD_YYYY("MM/DD/YYYY"), - @XmlEnumValue("MM/DD/YY") - MM_DD_YY("MM/DD/YY"), - @XmlEnumValue("DD/MM/YYYY") - DD_MM_YYYY("DD/MM/YYYY"), - @XmlEnumValue("DD/MM/YY") - DD_MM_YY("DD/MM/YY"), - @XmlEnumValue("YYYY/MM/DD") - YYYY_MM_DD("YYYY/MM/DD"), - @XmlEnumValue("YY/MM/DD") - YY_MM_DD("YY/MM/DD"); - private final String value; - - DateFormat(String v) { - value = v; - } - - public String value() { - return value; - } - - public static DateFormat fromValue(String v) { - for (DateFormat c: DateFormat.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultAccountPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultAccountPreference.java deleted file mode 100644 index 778bdb911..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultAccountPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for DefaultAccountPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DefaultAccountPreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="defaultAccount" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DefaultAccountPreference") -public class DefaultAccountPreference { - - @XmlAttribute(name = "defaultAccount") - protected String defaultAccount; - @XmlAttribute(name = "isDefault") - protected Boolean isDefault; - - /** - * Gets the value of the defaultAccount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefaultAccount() { - return defaultAccount; - } - - /** - * Sets the value of the defaultAccount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefaultAccount(String value) { - this.defaultAccount = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultDateAndTimePreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultDateAndTimePreference.java deleted file mode 100644 index f4657d7b1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultDateAndTimePreference.java +++ /dev/null @@ -1,168 +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; - - -/** - *

Java class for DefaultDateAndTimePreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DefaultDateAndTimePreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="TimeZone" type="{http://schema.ultraservice.neustar.com/v01/}TimeZone" />
- *       <attribute name="DateFormat" type="{http://schema.ultraservice.neustar.com/v01/}DateFormat" />
- *       <attribute name="TimeFormat" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TTLFormat" type="{http://schema.ultraservice.neustar.com/v01/}TTLFormat" />
- *       <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DefaultDateAndTimePreference") -public class DefaultDateAndTimePreference { - - @XmlAttribute(name = "TimeZone") - protected TimeZone timeZone; - @XmlAttribute(name = "DateFormat") - protected DateFormat dateFormat; - @XmlAttribute(name = "TimeFormat") - protected String timeFormat; - @XmlAttribute(name = "TTLFormat") - protected String ttlFormat; - @XmlAttribute(name = "isDefault") - protected Boolean isDefault; - - /** - * Gets the value of the timeZone property. - * - * @return - * possible object is - * {@link TimeZone } - * - */ - public TimeZone getTimeZone() { - return timeZone; - } - - /** - * Sets the value of the timeZone property. - * - * @param value - * allowed object is - * {@link TimeZone } - * - */ - public void setTimeZone(TimeZone value) { - this.timeZone = value; - } - - /** - * Gets the value of the dateFormat property. - * - * @return - * possible object is - * {@link DateFormat } - * - */ - public DateFormat getDateFormat() { - return dateFormat; - } - - /** - * Sets the value of the dateFormat property. - * - * @param value - * allowed object is - * {@link DateFormat } - * - */ - public void setDateFormat(DateFormat value) { - this.dateFormat = value; - } - - /** - * Gets the value of the timeFormat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTimeFormat() { - return timeFormat; - } - - /** - * Sets the value of the timeFormat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTimeFormat(String value) { - this.timeFormat = value; - } - - /** - * Gets the value of the ttlFormat property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTLFormat() { - return ttlFormat; - } - - /** - * Sets the value of the ttlFormat property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTLFormat(String value) { - this.ttlFormat = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultNumberOfrecordsPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultNumberOfrecordsPreference.java deleted file mode 100644 index 364372d19..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultNumberOfrecordsPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for DefaultNumberOfrecordsPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DefaultNumberOfrecordsPreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="LargeTable" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SmallTable" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DefaultNumberOfrecordsPreference") -public class DefaultNumberOfrecordsPreference { - - @XmlAttribute(name = "LargeTable") - protected String largeTable; - @XmlAttribute(name = "SmallTable") - protected String smallTable; - @XmlAttribute(name = "isDefault") - protected Boolean isDefault; - - /** - * Gets the value of the largeTable property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLargeTable() { - return largeTable; - } - - /** - * Sets the value of the largeTable property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLargeTable(String value) { - this.largeTable = value; - } - - /** - * Gets the value of the smallTable property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSmallTable() { - return smallTable; - } - - /** - * Sets the value of the smallTable property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSmallTable(String value) { - this.smallTable = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultReportPrefPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultReportPrefPreference.java deleted file mode 100644 index 0a66d9b37..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DefaultReportPrefPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for DefaultReportPrefPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DefaultReportPrefPreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="ReportType" type="{http://schema.ultraservice.neustar.com/v01/}reportType" />
- *       <attribute name="GraphType" type="{http://schema.ultraservice.neustar.com/v01/}graphType" />
- *       <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DefaultReportPrefPreference") -public class DefaultReportPrefPreference { - - @XmlAttribute(name = "ReportType") - protected ReportType reportType; - @XmlAttribute(name = "GraphType") - protected GraphType graphType; - @XmlAttribute(name = "isDefault") - protected Boolean isDefault; - - /** - * Gets the value of the reportType property. - * - * @return - * possible object is - * {@link ReportType } - * - */ - public ReportType getReportType() { - return reportType; - } - - /** - * Sets the value of the reportType property. - * - * @param value - * allowed object is - * {@link ReportType } - * - */ - public void setReportType(ReportType value) { - this.reportType = value; - } - - /** - * Gets the value of the graphType property. - * - * @return - * possible object is - * {@link GraphType } - * - */ - public GraphType getGraphType() { - return graphType; - } - - /** - * Sets the value of the graphType property. - * - * @param value - * allowed object is - * {@link GraphType } - * - */ - public void setGraphType(GraphType value) { - this.graphType = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DeleteConfirmPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DeleteConfirmPreference.java deleted file mode 100644 index a8f3eeaee..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DeleteConfirmPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for DeleteConfirmPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DeleteConfirmPreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="DeleteConfirmation" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DeleteConfirmPreference") -public class DeleteConfirmPreference { - - @XmlAttribute(name = "DeleteConfirmation") - protected String deleteConfirmation; - @XmlAttribute(name = "isDefault") - protected Boolean isDefault; - - /** - * Gets the value of the deleteConfirmation property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDeleteConfirmation() { - return deleteConfirmation; - } - - /** - * Sets the value of the deleteConfirmation property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDeleteConfirmation(String value) { - this.deleteConfirmation = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirPoolRecordType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirPoolRecordType.java deleted file mode 100644 index 20172a1ac..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirPoolRecordType.java +++ /dev/null @@ -1,56 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DirPoolRecordType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DirPoolRecordType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="A"/>
- *     <enumeration value="AAAA"/>
- *     <enumeration value="TXT"/>
- *     <enumeration value="SRV"/>
- *     <enumeration value="PTR"/>
- *     <enumeration value="HINFO"/>
- *     <enumeration value="RP"/>
- *     <enumeration value="NAPTR"/>
- *     <enumeration value="MX"/>
- *     <enumeration value="CNAME"/>
- *     <enumeration value="SPF"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DirPoolRecordType") -@XmlEnum -public enum DirPoolRecordType { - - A, - AAAA, - TXT, - SRV, - PTR, - HINFO, - RP, - NAPTR, - MX, - CNAME, - SPF; - - public String value() { - return name(); - } - - public static DirPoolRecordType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirPoolType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirPoolType.java deleted file mode 100644 index 0fed11665..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirPoolType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DirPoolType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="DirPoolType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="GEOLOCATION"/>
- *     <enumeration value="SOURCEIP"/>
- *     <enumeration value="MIXED"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "DirPoolType") -@XmlEnum -public enum DirPoolType { - - GEOLOCATION, - SOURCEIP, - MIXED; - - public String value() { - return name(); - } - - public static DirPoolType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSGroupDetail.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSGroupDetail.java deleted file mode 100644 index c7ae7f5fe..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSGroupDetail.java +++ /dev/null @@ -1,150 +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.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DirectionalDNSGroupDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalDNSGroupDetail">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DirectionalDNSRegion" type="{http://schema.ultraservice.neustar.com/v01/}RegionForNewGroupsList"/>
- *         <element name="DirectionalDNSSourceIPList" type="{http://schema.ultraservice.neustar.com/v01/}SourceIpGroupDefinitionList"/>
- *       </sequence>
- *       <attribute name="GroupName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalDNSGroupDetail", propOrder = { - "directionalDNSRegion", - "directionalDNSSourceIPList" -}) -@XmlSeeAlso({ - GlobalDirectionalGroupUpdateDetails.class, - GlobalDirectionalGroupDetails.class -}) -public class DirectionalDNSGroupDetail { - - @XmlElement(name = "DirectionalDNSRegion", required = true) - protected RegionForNewGroupsList directionalDNSRegion; - @XmlElement(name = "DirectionalDNSSourceIPList", required = true) - protected SourceIpGroupDefinitionList directionalDNSSourceIPList; - @XmlAttribute(name = "GroupName", required = true) - protected String groupName; - @XmlAttribute(name = "Description") - protected String description; - - /** - * Gets the value of the directionalDNSRegion property. - * - * @return - * possible object is - * {@link RegionForNewGroupsList } - * - */ - public RegionForNewGroupsList getDirectionalDNSRegion() { - return directionalDNSRegion; - } - - /** - * Sets the value of the directionalDNSRegion property. - * - * @param value - * allowed object is - * {@link RegionForNewGroupsList } - * - */ - public void setDirectionalDNSRegion(RegionForNewGroupsList value) { - this.directionalDNSRegion = value; - } - - /** - * Gets the value of the directionalDNSSourceIPList property. - * - * @return - * possible object is - * {@link SourceIpGroupDefinitionList } - * - */ - public SourceIpGroupDefinitionList getDirectionalDNSSourceIPList() { - return directionalDNSSourceIPList; - } - - /** - * Sets the value of the directionalDNSSourceIPList property. - * - * @param value - * allowed object is - * {@link SourceIpGroupDefinitionList } - * - */ - public void setDirectionalDNSSourceIPList(SourceIpGroupDefinitionList value) { - this.directionalDNSSourceIPList = 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecord.java deleted file mode 100644 index 686ae49a3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecord.java +++ /dev/null @@ -1,136 +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; - - -/** - *

Java class for DirectionalDNSRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalDNSRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoValues" type="{http://schema.ultraservice.neustar.com/v01/}InfoValues"/>
- *       </sequence>
- *       <attribute name="recordType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}DirPoolRecordType" />
- *       <attribute name="TTL" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="noResponseRecord" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalDNSRecord", propOrder = { - "infoValues" -}) -public class DirectionalDNSRecord { - - @XmlElement(name = "InfoValues", required = true) - protected InfoValues infoValues; - @XmlAttribute(name = "recordType", required = true) - protected DirPoolRecordType recordType; - @XmlAttribute(name = "TTL") - protected String ttl; - @XmlAttribute(name = "noResponseRecord", required = true) - protected boolean noResponseRecord; - - /** - * Gets the value of the infoValues property. - * - * @return - * possible object is - * {@link InfoValues } - * - */ - public InfoValues getInfoValues() { - return infoValues; - } - - /** - * Sets the value of the infoValues property. - * - * @param value - * allowed object is - * {@link InfoValues } - * - */ - public void setInfoValues(InfoValues value) { - this.infoValues = value; - } - - /** - * Gets the value of the recordType property. - * - * @return - * possible object is - * {@link DirPoolRecordType } - * - */ - public DirPoolRecordType getRecordType() { - return recordType; - } - - /** - * Sets the value of the recordType property. - * - * @param value - * allowed object is - * {@link DirPoolRecordType } - * - */ - public void setRecordType(DirPoolRecordType value) { - this.recordType = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = value; - } - - /** - * Gets the value of the noResponseRecord property. - * - */ - public boolean isNoResponseRecord() { - return noResponseRecord; - } - - /** - * Sets the value of the noResponseRecord property. - * - */ - public void setNoResponseRecord(boolean value) { - this.noResponseRecord = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordDetail.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordDetail.java deleted file mode 100644 index f5772ba56..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordDetail.java +++ /dev/null @@ -1,414 +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; - - -/** - *

Java class for DirectionalDNSRecordDetail complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalDNSRecordDetail">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DirectionalDNSRecord" type="{http://schema.ultraservice.neustar.com/v01/}DirectionalDNSRecord"/>
- *       </sequence>
- *       <attribute name="GeolocationGroupName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="GeolocationGroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SourceIPGroupName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SourceIPGroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="GeolocationDescription" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SourceIPDescription" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TerritoriesCount" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="DirPoolRecordId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="GroupName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="GroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ZoneName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="DName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalDNSRecordDetail", propOrder = { - "directionalDNSRecord" -}) -public class DirectionalDNSRecordDetail { - - @XmlElement(name = "DirectionalDNSRecord", required = true) - protected DirectionalDNSRecord directionalDNSRecord; - @XmlAttribute(name = "GeolocationGroupName") - protected String geolocationGroupName; - @XmlAttribute(name = "GeolocationGroupId") - protected String geolocationGroupId; - @XmlAttribute(name = "SourceIPGroupName") - protected String sourceIPGroupName; - @XmlAttribute(name = "SourceIPGroupId") - protected String sourceIPGroupId; - @XmlAttribute(name = "GeolocationDescription") - protected String geolocationDescription; - @XmlAttribute(name = "SourceIPDescription") - protected String sourceIPDescription; - @XmlAttribute(name = "TerritoriesCount") - protected String territoriesCount; - @XmlAttribute(name = "DirPoolRecordId", required = true) - protected String dirPoolRecordId; - @XmlAttribute(name = "GroupName") - protected String groupName; - @XmlAttribute(name = "GroupId") - protected String groupId; - @XmlAttribute(name = "Description") - protected String description; - @XmlAttribute(name = "ZoneName") - protected String zoneName; - @XmlAttribute(name = "DName") - protected String dName; - - /** - * Gets the value of the directionalDNSRecord property. - * - * @return - * possible object is - * {@link DirectionalDNSRecord } - * - */ - public DirectionalDNSRecord getDirectionalDNSRecord() { - return directionalDNSRecord; - } - - /** - * Sets the value of the directionalDNSRecord property. - * - * @param value - * allowed object is - * {@link DirectionalDNSRecord } - * - */ - public void setDirectionalDNSRecord(DirectionalDNSRecord value) { - this.directionalDNSRecord = value; - } - - /** - * Gets the value of the geolocationGroupName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeolocationGroupName() { - return geolocationGroupName; - } - - /** - * Sets the value of the geolocationGroupName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeolocationGroupName(String value) { - this.geolocationGroupName = value; - } - - /** - * Gets the value of the geolocationGroupId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeolocationGroupId() { - return geolocationGroupId; - } - - /** - * Sets the value of the geolocationGroupId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeolocationGroupId(String value) { - this.geolocationGroupId = value; - } - - /** - * Gets the value of the sourceIPGroupName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSourceIPGroupName() { - return sourceIPGroupName; - } - - /** - * Sets the value of the sourceIPGroupName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSourceIPGroupName(String value) { - this.sourceIPGroupName = value; - } - - /** - * Gets the value of the sourceIPGroupId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSourceIPGroupId() { - return sourceIPGroupId; - } - - /** - * Sets the value of the sourceIPGroupId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSourceIPGroupId(String value) { - this.sourceIPGroupId = value; - } - - /** - * Gets the value of the geolocationDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGeolocationDescription() { - return geolocationDescription; - } - - /** - * Sets the value of the geolocationDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGeolocationDescription(String value) { - this.geolocationDescription = value; - } - - /** - * Gets the value of the sourceIPDescription property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSourceIPDescription() { - return sourceIPDescription; - } - - /** - * Sets the value of the sourceIPDescription property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSourceIPDescription(String value) { - this.sourceIPDescription = value; - } - - /** - * Gets the value of the territoriesCount property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTerritoriesCount() { - return territoriesCount; - } - - /** - * Sets the value of the territoriesCount property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTerritoriesCount(String value) { - this.territoriesCount = 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; - } - - /** - * 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 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 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 dName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDName() { - return dName; - } - - /** - * Sets the value of the dName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDName(String value) { - this.dName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordDetailList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordDetailList.java deleted file mode 100644 index 7ec0d5188..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordDetailList.java +++ /dev/null @@ -1,124 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DirectionalDNSRecordDetailList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalDNSRecordDetailList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DirectionalDNSRecordDetail" type="{http://schema.ultraservice.neustar.com/v01/}DirectionalDNSRecordDetail" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="DName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalDNSRecordDetailList", propOrder = { - "directionalDNSRecordDetail" -}) -public class DirectionalDNSRecordDetailList { - - @XmlElement(name = "DirectionalDNSRecordDetail", required = true) - protected List directionalDNSRecordDetail; - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "DName", required = true) - protected String dName; - - /** - * Gets the value of the directionalDNSRecordDetail property. - * - *

- * 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 set method for the directionalDNSRecordDetail property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDirectionalDNSRecordDetail().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DirectionalDNSRecordDetail } - * - * - */ - public List getDirectionalDNSRecordDetail() { - if (directionalDNSRecordDetail == null) { - directionalDNSRecordDetail = new ArrayList(); - } - return this.directionalDNSRecordDetail; - } - - /** - * 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 dName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDName() { - return dName; - } - - /** - * Sets the value of the dName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDName(String value) { - this.dName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordToUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordToUpdate.java deleted file mode 100644 index f927a956d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalDNSRecordToUpdate.java +++ /dev/null @@ -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; - - -/** - *

Java class for DirectionalDNSRecordToUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalDNSRecordToUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoValues" type="{http://schema.ultraservice.neustar.com/v01/}InfoValues"/>
- *       </sequence>
- *       <attribute name="TTL" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalDNSRecordToUpdate", propOrder = { - "infoValues" -}) -public class DirectionalDNSRecordToUpdate { - - @XmlElement(name = "InfoValues", required = true) - protected InfoValues infoValues; - @XmlAttribute(name = "TTL") - protected String ttl; - - /** - * Gets the value of the infoValues property. - * - * @return - * possible object is - * {@link InfoValues } - * - */ - public InfoValues getInfoValues() { - return infoValues; - } - - /** - * Sets the value of the infoValues property. - * - * @param value - * allowed object is - * {@link InfoValues } - * - */ - public void setInfoValues(InfoValues value) { - this.infoValues = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalPoolData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalPoolData.java deleted file mode 100644 index 9d5433244..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalPoolData.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for DirectionalPoolData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalPoolData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="dirpoolid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Zoneid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Poolname" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Pooldname" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Sponsorid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="accountid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="DirPoolType" type="{http://schema.ultraservice.neustar.com/v01/}DirPoolType" />
- *       <attribute name="TieBreak" type="{http://schema.ultraservice.neustar.com/v01/}TieBreak" />
- *       <attribute name="Description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalPoolData") -public class DirectionalPoolData { - - @XmlAttribute(name = "dirpoolid") - protected String dirpoolid; - @XmlAttribute(name = "Zoneid") - protected String zoneid; - @XmlAttribute(name = "Poolname") - protected String poolname; - @XmlAttribute(name = "Pooldname") - protected String pooldname; - @XmlAttribute(name = "Sponsorid") - protected String sponsorid; - @XmlAttribute(name = "accountid") - protected String accountid; - @XmlAttribute(name = "DirPoolType") - protected DirPoolType dirPoolType; - @XmlAttribute(name = "TieBreak") - protected TieBreak tieBreak; - @XmlAttribute(name = "Description") - protected String description; - - /** - * Gets the value of the dirpoolid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirpoolid() { - return dirpoolid; - } - - /** - * Sets the value of the dirpoolid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirpoolid(String value) { - this.dirpoolid = 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 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 pooldname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPooldname() { - return pooldname; - } - - /** - * Sets the value of the pooldname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPooldname(String value) { - this.pooldname = value; - } - - /** - * 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 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 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 tieBreak property. - * - * @return - * possible object is - * {@link TieBreak } - * - */ - public TieBreak getTieBreak() { - return tieBreak; - } - - /** - * Sets the value of the tieBreak property. - * - * @param value - * allowed object is - * {@link TieBreak } - * - */ - public void setTieBreak(TieBreak value) { - this.tieBreak = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalPoolList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalPoolList.java deleted file mode 100644 index 270e917b4..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalPoolList.java +++ /dev/null @@ -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; - - -/** - *

Java class for DirectionalPoolList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalPoolList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DirectionalPoolData" type="{http://schema.ultraservice.neustar.com/v01/}DirectionalPoolData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalPoolList", propOrder = { - "directionalPoolData" -}) -public class DirectionalPoolList { - - @XmlElement(name = "DirectionalPoolData", required = true) - protected List directionalPoolData; - - /** - * Gets the value of the directionalPoolData property. - * - *

- * 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 set method for the directionalPoolData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDirectionalPoolData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DirectionalPoolData } - * - * - */ - public List getDirectionalPoolData() { - if (directionalPoolData == null) { - directionalPoolData = new ArrayList(); - } - return this.directionalPoolData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalRecordData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalRecordData.java deleted file mode 100644 index 43438878c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DirectionalRecordData.java +++ /dev/null @@ -1,165 +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; - - -/** - *

Java class for DirectionalRecordData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DirectionalRecordData">
- *   <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"/>
- *       </sequence>
- *       <attribute name="existingResourceRecordId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="createAllNonConfiguredGrp" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DirectionalRecordData", propOrder = { - "directionalRecordConfiguration", - "geolocationGroupData", - "sourceIPGroupData" -}) -public class DirectionalRecordData { - - @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; - @XmlAttribute(name = "existingResourceRecordId") - protected String existingResourceRecordId; - @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 existingResourceRecordId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getExistingResourceRecordId() { - return existingResourceRecordId; - } - - /** - * Sets the value of the existingResourceRecordId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setExistingResourceRecordId(String value) { - this.existingResourceRecordId = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnsCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnsCriteria.java deleted file mode 100644 index f8c88444d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnsCriteria.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for DnsCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DnsCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="runTime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="runTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="response" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DnsCriteria", propOrder = { - "runTime", - "runTimeAverage", - "response" -}) -public class DnsCriteria { - - protected Integer runTime; - protected Integer runTimeAverage; - protected String response; - - /** - * Gets the value of the runTime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTime() { - return runTime; - } - - /** - * Sets the value of the runTime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTime(Integer value) { - this.runTime = value; - } - - /** - * Gets the value of the runTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTimeAverage() { - return runTimeAverage; - } - - /** - * Sets the value of the runTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTimeAverage(Integer value) { - this.runTimeAverage = value; - } - - /** - * Gets the value of the response property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResponse() { - return response; - } - - /** - * Sets the value of the response property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResponse(String value) { - this.response = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnssecKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnssecKey.java deleted file mode 100644 index f1b747e06..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnssecKey.java +++ /dev/null @@ -1,253 +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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for DnssecKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DnssecKey">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="status" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="algorithm" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="keySize" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="effectivityPeriod" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="created" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
- *       <attribute name="nextRoll" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
- *       <attribute name="keyID" type="{http://www.w3.org/2001/XMLSchema}long" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DnssecKey") -public class DnssecKey { - - @XmlAttribute(name = "type") - protected String type; - @XmlAttribute(name = "status") - protected String status; - @XmlAttribute(name = "algorithm") - protected String algorithm; - @XmlAttribute(name = "keySize") - protected Integer keySize; - @XmlAttribute(name = "effectivityPeriod") - protected Integer effectivityPeriod; - @XmlAttribute(name = "created") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar created; - @XmlAttribute(name = "nextRoll") - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar nextRoll; - @XmlAttribute(name = "keyID") - protected Long keyID; - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = 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 algorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlgorithm() { - return algorithm; - } - - /** - * Sets the value of the algorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlgorithm(String value) { - this.algorithm = value; - } - - /** - * Gets the value of the keySize property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getKeySize() { - return keySize; - } - - /** - * Sets the value of the keySize property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setKeySize(Integer value) { - this.keySize = value; - } - - /** - * Gets the value of the effectivityPeriod property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getEffectivityPeriod() { - return effectivityPeriod; - } - - /** - * Sets the value of the effectivityPeriod property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setEffectivityPeriod(Integer value) { - this.effectivityPeriod = value; - } - - /** - * Gets the value of the created property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getCreated() { - return created; - } - - /** - * Sets the value of the created property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setCreated(XMLGregorianCalendar value) { - this.created = value; - } - - /** - * Gets the value of the nextRoll property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getNextRoll() { - return nextRoll; - } - - /** - * Sets the value of the nextRoll property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setNextRoll(XMLGregorianCalendar value) { - this.nextRoll = value; - } - - /** - * Gets the value of the keyID property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getKeyID() { - return keyID; - } - - /** - * Sets the value of the keyID property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setKeyID(Long value) { - this.keyID = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnssecKeyRecordList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnssecKeyRecordList.java deleted file mode 100644 index f476a977a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DnssecKeyRecordList.java +++ /dev/null @@ -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; - - -/** - *

Java class for DnssecKeyRecordList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DnssecKeyRecordList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DnssecKey" type="{http://schema.ultraservice.neustar.com/v01/}DnssecKey" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DnssecKeyRecordList", propOrder = { - "dnssecKey" -}) -public class DnssecKeyRecordList { - - @XmlElement(name = "DnssecKey", required = true) - protected List dnssecKey; - - /** - * Gets the value of the dnssecKey property. - * - *

- * 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 set method for the dnssecKey property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDnssecKey().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DnssecKey } - * - * - */ - public List getDnssecKey() { - if (dnssecKey == null) { - dnssecKey = new ArrayList(); - } - return this.dnssecKey; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DomainAlertData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DomainAlertData.java deleted file mode 100644 index 67a70407b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DomainAlertData.java +++ /dev/null @@ -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; - - -/** - *

Java class for DomainAlertData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DomainAlertData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="AccountId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="AlertMessage" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="AlertType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Status" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="DateAndTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DomainAlertData") -public class DomainAlertData { - - @XmlAttribute(name = "AccountId") - protected String accountId; - @XmlAttribute(name = "AlertMessage") - protected String alertMessage; - @XmlAttribute(name = "AlertType") - protected String alertType; - @XmlAttribute(name = "Status") - protected String status; - @XmlAttribute(name = "DateAndTime") - protected String dateAndTime; - @XmlAttribute(name = "DomainName") - protected String domainName; - - /** - * 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 alertMessage property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlertMessage() { - return alertMessage; - } - - /** - * Sets the value of the alertMessage property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlertMessage(String value) { - this.alertMessage = value; - } - - /** - * Gets the value of the alertType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlertType() { - return alertType; - } - - /** - * Sets the value of the alertType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlertType(String value) { - this.alertType = 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 dateAndTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDateAndTime() { - return dateAndTime; - } - - /** - * Sets the value of the dateAndTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDateAndTime(String value) { - this.dateAndTime = value; - } - - /** - * Gets the value of the domainName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDomainName() { - return domainName; - } - - /** - * Sets the value of the domainName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDomainName(String value) { - this.domainName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DomainDnssecPolicies.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DomainDnssecPolicies.java deleted file mode 100644 index 898d8134e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DomainDnssecPolicies.java +++ /dev/null @@ -1,357 +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; - - -/** - *

Java class for DomainDnssecPolicies complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DomainDnssecPolicies">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="cryptoAlgorithm" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="nextSecure" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="rrsigSignatureDurationInDays" type="{http://www.w3.org/2001/XMLSchema}long" />
- *       <attribute name="kskBitLength" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="zskBitLength" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="kskRollOverPeriodInDays" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="zskRollOverPeriodInDays" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="nsec3Param" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="hashAlgorithm" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="optoutFlag" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="iterations" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="salt" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DomainDnssecPolicies") -public class DomainDnssecPolicies { - - @XmlAttribute(name = "cryptoAlgorithm") - protected String cryptoAlgorithm; - @XmlAttribute(name = "nextSecure") - protected String nextSecure; - @XmlAttribute(name = "rrsigSignatureDurationInDays") - protected Long rrsigSignatureDurationInDays; - @XmlAttribute(name = "kskBitLength") - protected Integer kskBitLength; - @XmlAttribute(name = "zskBitLength") - protected Integer zskBitLength; - @XmlAttribute(name = "kskRollOverPeriodInDays") - protected Integer kskRollOverPeriodInDays; - @XmlAttribute(name = "zskRollOverPeriodInDays") - protected Integer zskRollOverPeriodInDays; - @XmlAttribute(name = "nsec3Param") - protected String nsec3Param; - @XmlAttribute(name = "hashAlgorithm") - protected String hashAlgorithm; - @XmlAttribute(name = "optoutFlag") - protected Integer optoutFlag; - @XmlAttribute(name = "iterations") - protected Integer iterations; - @XmlAttribute(name = "salt") - protected String salt; - - /** - * Gets the value of the cryptoAlgorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCryptoAlgorithm() { - return cryptoAlgorithm; - } - - /** - * Sets the value of the cryptoAlgorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCryptoAlgorithm(String value) { - this.cryptoAlgorithm = value; - } - - /** - * Gets the value of the nextSecure property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNextSecure() { - return nextSecure; - } - - /** - * Sets the value of the nextSecure property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNextSecure(String value) { - this.nextSecure = value; - } - - /** - * Gets the value of the rrsigSignatureDurationInDays property. - * - * @return - * possible object is - * {@link Long } - * - */ - public Long getRrsigSignatureDurationInDays() { - return rrsigSignatureDurationInDays; - } - - /** - * Sets the value of the rrsigSignatureDurationInDays property. - * - * @param value - * allowed object is - * {@link Long } - * - */ - public void setRrsigSignatureDurationInDays(Long value) { - this.rrsigSignatureDurationInDays = value; - } - - /** - * Gets the value of the kskBitLength property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getKskBitLength() { - return kskBitLength; - } - - /** - * Sets the value of the kskBitLength property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setKskBitLength(Integer value) { - this.kskBitLength = value; - } - - /** - * Gets the value of the zskBitLength property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getZskBitLength() { - return zskBitLength; - } - - /** - * Sets the value of the zskBitLength property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setZskBitLength(Integer value) { - this.zskBitLength = value; - } - - /** - * Gets the value of the kskRollOverPeriodInDays property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getKskRollOverPeriodInDays() { - return kskRollOverPeriodInDays; - } - - /** - * Sets the value of the kskRollOverPeriodInDays property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setKskRollOverPeriodInDays(Integer value) { - this.kskRollOverPeriodInDays = value; - } - - /** - * Gets the value of the zskRollOverPeriodInDays property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getZskRollOverPeriodInDays() { - return zskRollOverPeriodInDays; - } - - /** - * Sets the value of the zskRollOverPeriodInDays property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setZskRollOverPeriodInDays(Integer value) { - this.zskRollOverPeriodInDays = value; - } - - /** - * Gets the value of the nsec3Param property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNsec3Param() { - return nsec3Param; - } - - /** - * Sets the value of the nsec3Param property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNsec3Param(String value) { - this.nsec3Param = value; - } - - /** - * Gets the value of the hashAlgorithm property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHashAlgorithm() { - return hashAlgorithm; - } - - /** - * Sets the value of the hashAlgorithm property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHashAlgorithm(String value) { - this.hashAlgorithm = value; - } - - /** - * Gets the value of the optoutFlag property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOptoutFlag() { - return optoutFlag; - } - - /** - * Sets the value of the optoutFlag property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOptoutFlag(Integer value) { - this.optoutFlag = value; - } - - /** - * Gets the value of the iterations property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getIterations() { - return iterations; - } - - /** - * Sets the value of the iterations property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setIterations(Integer value) { - this.iterations = value; - } - - /** - * Gets the value of the salt property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSalt() { - return salt; - } - - /** - * Sets the value of the salt property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSalt(String value) { - this.salt = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DsRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DsRecord.java deleted file mode 100644 index 7aeee171d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DsRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for DsRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DsRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="dsrecordtext" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DsRecord") -public class DsRecord { - - @XmlAttribute(name = "dsrecordtext") - protected String dsrecordtext; - - /** - * Gets the value of the dsrecordtext property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDsrecordtext() { - return dsrecordtext; - } - - /** - * Sets the value of the dsrecordtext property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDsrecordtext(String value) { - this.dsrecordtext = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DsRecordList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DsRecordList.java deleted file mode 100644 index 7dd68c290..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/DsRecordList.java +++ /dev/null @@ -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; - - -/** - *

Java class for DsRecordList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="DsRecordList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DsRecord" type="{http://schema.ultraservice.neustar.com/v01/}DsRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "DsRecordList", propOrder = { - "dsRecord" -}) -public class DsRecordList { - - @XmlElement(name = "DsRecord", required = true) - protected List dsRecord; - - /** - * Gets the value of the dsRecord property. - * - *

- * 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 set method for the dsRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getDsRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link DsRecord } - * - * - */ - public List getDsRecord() { - if (dsRecord == null) { - dsRecord = new ArrayList(); - } - return this.dsRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/EntryListParams.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/EntryListParams.java deleted file mode 100644 index 77a0d5798..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/EntryListParams.java +++ /dev/null @@ -1,125 +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; - - -/** - *

Java class for EntryListParams complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="EntryListParams">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="sortBy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="sortOrder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="limit" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "EntryListParams", propOrder = { - "sortBy", - "sortOrder", - "offset", - "limit" -}) -public class EntryListParams { - - protected String sortBy; - protected String sortOrder; - protected int offset; - protected int limit; - - /** - * Gets the value of the sortBy property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSortBy() { - return sortBy; - } - - /** - * Sets the value of the sortBy property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSortBy(String value) { - this.sortBy = value; - } - - /** - * Gets the value of the sortOrder property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSortOrder() { - return sortOrder; - } - - /** - * Sets the value of the sortOrder property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSortOrder(String value) { - this.sortOrder = 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 limit property. - * - */ - public int getLimit() { - return limit; - } - - /** - * Sets the value of the limit property. - * - */ - public void setLimit(int value) { - this.limit = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ExternalValues.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ExternalValues.java deleted file mode 100644 index 1178979f3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ExternalValues.java +++ /dev/null @@ -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; - - -/** - *

Java class for ExternalValues complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ExternalValues">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="Default" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Min" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Max" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ExternalValues") -public class ExternalValues { - - @XmlAttribute(name = "Default") - protected String _default; - @XmlAttribute(name = "Min") - protected String min; - @XmlAttribute(name = "Max") - protected String max; - - /** - * Gets the value of the default property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDefault() { - return _default; - } - - /** - * Sets the value of the default property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDefault(String value) { - this._default = value; - } - - /** - * Gets the value of the min property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMin() { - return min; - } - - /** - * Sets the value of the min property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMin(String value) { - this.min = value; - } - - /** - * Gets the value of the max property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMax() { - return max; - } - - /** - * Sets the value of the max property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMax(String value) { - this.max = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPCriteria.java deleted file mode 100644 index f6e5a4583..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPCriteria.java +++ /dev/null @@ -1,156 +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; - - -/** - *

Java class for FTPCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FTPCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <all>
- *         <element name="runTime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="runTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="connectTime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="connectTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="search" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </all>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FTPCriteria", propOrder = { - -}) -public class FTPCriteria { - - protected Integer runTime; - protected Integer runTimeAverage; - protected int connectTime; - protected Integer connectTimeAverage; - protected String search; - - /** - * Gets the value of the runTime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTime() { - return runTime; - } - - /** - * Sets the value of the runTime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTime(Integer value) { - this.runTime = value; - } - - /** - * Gets the value of the runTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTimeAverage() { - return runTimeAverage; - } - - /** - * Sets the value of the runTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTimeAverage(Integer value) { - this.runTimeAverage = value; - } - - /** - * Gets the value of the connectTime property. - * - */ - public int getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - */ - public void setConnectTime(int value) { - this.connectTime = value; - } - - /** - * Gets the value of the connectTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTimeAverage() { - return connectTimeAverage; - } - - /** - * Sets the value of the connectTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTimeAverage(Integer value) { - this.connectTimeAverage = value; - } - - /** - * Gets the value of the search property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearch() { - return search; - } - - /** - * Sets the value of the search property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearch(String value) { - this.search = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPProbeData.java deleted file mode 100644 index c9f57d0c7..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPProbeData.java +++ /dev/null @@ -1,654 +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; - - -/** - *

Java class for FTPProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FTPProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="passiveMode" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="userName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="pathToFile" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="searchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="connectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failSearchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalSearchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningSearchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FTPProbeData") -public class FTPProbeData { - - @XmlAttribute(name = "port") - protected String port; - @XmlAttribute(name = "passiveMode") - protected String passiveMode; - @XmlAttribute(name = "userName") - protected String userName; - @XmlAttribute(name = "password") - protected String password; - @XmlAttribute(name = "pathToFile") - protected String pathToFile; - @XmlAttribute(name = "searchString") - protected String searchString; - @XmlAttribute(name = "connectTime") - protected String connectTime; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "failSearchString") - protected String failSearchString; - @XmlAttribute(name = "criticalSearchString") - protected String criticalSearchString; - @XmlAttribute(name = "warningSearchString") - protected String warningSearchString; - @XmlAttribute(name = "failAverageConnectTime") - protected String failAverageConnectTime; - @XmlAttribute(name = "criticalAverageConnectTime") - protected String criticalAverageConnectTime; - @XmlAttribute(name = "warningAverageConnectTime") - protected String warningAverageConnectTime; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - @XmlAttribute(name = "failConnectTime") - protected String failConnectTime; - @XmlAttribute(name = "criticalConnectTime") - protected String criticalConnectTime; - @XmlAttribute(name = "warningConnectTime") - protected String warningConnectTime; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort(String value) { - this.port = value; - } - - /** - * Gets the value of the passiveMode property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassiveMode() { - return passiveMode; - } - - /** - * Sets the value of the passiveMode property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassiveMode(String value) { - this.passiveMode = value; - } - - /** - * Gets the value of the userName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserName() { - return userName; - } - - /** - * Sets the value of the userName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserName(String value) { - this.userName = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - - /** - * Gets the value of the pathToFile property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPathToFile() { - return pathToFile; - } - - /** - * Sets the value of the pathToFile property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPathToFile(String value) { - this.pathToFile = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConnectTime(String value) { - this.connectTime = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the failSearchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailSearchString() { - return failSearchString; - } - - /** - * Sets the value of the failSearchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailSearchString(String value) { - this.failSearchString = value; - } - - /** - * Gets the value of the criticalSearchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalSearchString() { - return criticalSearchString; - } - - /** - * Sets the value of the criticalSearchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalSearchString(String value) { - this.criticalSearchString = value; - } - - /** - * Gets the value of the warningSearchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningSearchString() { - return warningSearchString; - } - - /** - * Sets the value of the warningSearchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningSearchString(String value) { - this.warningSearchString = value; - } - - /** - * Gets the value of the failAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageConnectTime() { - return failAverageConnectTime; - } - - /** - * Sets the value of the failAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageConnectTime(String value) { - this.failAverageConnectTime = value; - } - - /** - * Gets the value of the criticalAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageConnectTime() { - return criticalAverageConnectTime; - } - - /** - * Sets the value of the criticalAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageConnectTime(String value) { - this.criticalAverageConnectTime = value; - } - - /** - * Gets the value of the warningAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageConnectTime() { - return warningAverageConnectTime; - } - - /** - * Sets the value of the warningAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageConnectTime(String value) { - this.warningAverageConnectTime = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - - /** - * Gets the value of the failConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailConnectTime() { - return failConnectTime; - } - - /** - * Sets the value of the failConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailConnectTime(String value) { - this.failConnectTime = value; - } - - /** - * Gets the value of the criticalConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalConnectTime() { - return criticalConnectTime; - } - - /** - * Sets the value of the criticalConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalConnectTime(String value) { - this.criticalConnectTime = value; - } - - /** - * Gets the value of the warningConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningConnectTime() { - return warningConnectTime; - } - - /** - * Sets the value of the warningConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningConnectTime(String value) { - this.warningConnectTime = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPTransaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPTransaction.java deleted file mode 100644 index b39e17c03..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FTPTransaction.java +++ /dev/null @@ -1,234 +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; - - -/** - *

Java class for FTPTransaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FTPTransaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}FTPCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}FTPCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}FTPCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="passive" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="username" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FTPTransaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class FTPTransaction { - - protected FTPCriteria warningCriteria; - protected FTPCriteria criticalCriteria; - protected FTPCriteria failCriteria; - @XmlAttribute(name = "port", required = true) - protected int port; - @XmlAttribute(name = "passive", required = true) - protected boolean passive; - @XmlAttribute(name = "username") - protected String username; - @XmlAttribute(name = "password") - protected String password; - @XmlAttribute(name = "path", required = true) - protected String path; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link FTPCriteria } - * - */ - public FTPCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link FTPCriteria } - * - */ - public void setWarningCriteria(FTPCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link FTPCriteria } - * - */ - public FTPCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link FTPCriteria } - * - */ - public void setCriticalCriteria(FTPCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link FTPCriteria } - * - */ - public FTPCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link FTPCriteria } - * - */ - public void setFailCriteria(FTPCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the port property. - * - */ - public int getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - */ - public void setPort(int value) { - this.port = value; - } - - /** - * Gets the value of the passive property. - * - */ - public boolean isPassive() { - return passive; - } - - /** - * Sets the value of the passive property. - * - */ - public void setPassive(boolean value) { - this.passive = value; - } - - /** - * Gets the value of the username property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUsername() { - return username; - } - - /** - * Sets the value of the username property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUsername(String value) { - this.username = value; - } - - /** - * Gets the value of the password property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPassword() { - return password; - } - - /** - * Sets the value of the password property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPassword(String value) { - this.password = value; - } - - /** - * Gets the value of the path property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPath() { - return path; - } - - /** - * Sets the value of the path property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPath(String value) { - this.path = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitor.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitor.java deleted file mode 100644 index befdb46a4..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitor.java +++ /dev/null @@ -1,144 +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; - - -/** - *

Java class for FailoverMonitor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FailoverMonitor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="method" type="{http://schema.ultraservice.neustar.com/v01/}failoverMonitorMethod"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="transmittedData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="searchString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailoverMonitor", propOrder = { - "method", - "url", - "transmittedData", - "searchString" -}) -public class FailoverMonitor { - - @XmlElement(required = true) - protected FailoverMonitorMethod method; - @XmlElement(required = true) - protected String url; - protected String transmittedData; - protected String searchString; - - /** - * Gets the value of the method property. - * - * @return - * possible object is - * {@link FailoverMonitorMethod } - * - */ - public FailoverMonitorMethod getMethod() { - return method; - } - - /** - * Sets the value of the method property. - * - * @param value - * allowed object is - * {@link FailoverMonitorMethod } - * - */ - public void setMethod(FailoverMonitorMethod value) { - this.method = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the transmittedData property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTransmittedData() { - return transmittedData; - } - - /** - * Sets the value of the transmittedData property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTransmittedData(String value) { - this.transmittedData = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitorMethod.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitorMethod.java deleted file mode 100644 index e0b842ead..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitorMethod.java +++ /dev/null @@ -1,38 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for failoverMonitorMethod. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="failoverMonitorMethod">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="GET"/>
- *     <enumeration value="POST"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "failoverMonitorMethod") -@XmlEnum -public enum FailoverMonitorMethod { - - GET, - POST; - - public String value() { - return name(); - } - - public static FailoverMonitorMethod fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitorUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitorUpdate.java deleted file mode 100644 index bc9c24d21..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverMonitorUpdate.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for FailoverMonitorUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FailoverMonitorUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="method" type="{http://schema.ultraservice.neustar.com/v01/}failoverMonitorMethod" minOccurs="0"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="transmittedData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="searchString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailoverMonitorUpdate", propOrder = { - "method", - "url", - "transmittedData", - "searchString" -}) -public class FailoverMonitorUpdate { - - protected FailoverMonitorMethod method; - protected String url; - protected String transmittedData; - protected String searchString; - - /** - * Gets the value of the method property. - * - * @return - * possible object is - * {@link FailoverMonitorMethod } - * - */ - public FailoverMonitorMethod getMethod() { - return method; - } - - /** - * Sets the value of the method property. - * - * @param value - * allowed object is - * {@link FailoverMonitorMethod } - * - */ - public void setMethod(FailoverMonitorMethod value) { - this.method = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the transmittedData property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTransmittedData() { - return transmittedData; - } - - /** - * Sets the value of the transmittedData property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTransmittedData(String value) { - this.transmittedData = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverRecord.java deleted file mode 100644 index a34f1baf5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for FailoverRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FailoverRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="recordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailoverRecord", propOrder = { - "recordValue", - "description" -}) -public class FailoverRecord { - - @XmlElement(required = true) - protected String recordValue; - protected String description; - - /** - * Gets the value of the recordValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordValue() { - return recordValue; - } - - /** - * Sets the value of the recordValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordValue(String value) { - this.recordValue = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverRecordUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverRecordUpdate.java deleted file mode 100644 index 90e9ab531..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/FailoverRecordUpdate.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for FailoverRecordUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="FailoverRecordUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="recordValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "FailoverRecordUpdate", propOrder = { - "recordValue", - "description" -}) -public class FailoverRecordUpdate { - - protected String recordValue; - protected String description; - - /** - * Gets the value of the recordValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordValue() { - return recordValue; - } - - /** - * Sets the value of the recordValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordValue(String value) { - this.recordValue = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ForcedState.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ForcedState.java deleted file mode 100644 index 7a43619a3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ForcedState.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ForcedState. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ForcedState">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="FORCED_ACTIVE"/>
- *     <enumeration value="FORCED_INACTIVE"/>
- *     <enumeration value="NOT_FORCED"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ForcedState") -@XmlEnum -public enum ForcedState { - - FORCED_ACTIVE, - FORCED_INACTIVE, - NOT_FORCED; - - public String value() { - return name(); - } - - public static ForcedState fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralNotificationStatusData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralNotificationStatusData.java deleted file mode 100644 index 650e1609f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralNotificationStatusData.java +++ /dev/null @@ -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; - - -/** - *

Java class for GeneralNotificationStatusData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeneralNotificationStatusData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="notificationType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="notificationEnabled" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeneralNotificationStatusData") -public class GeneralNotificationStatusData { - - @XmlAttribute(name = "notificationType") - protected String notificationType; - @XmlAttribute(name = "notificationEnabled") - protected String notificationEnabled; - - /** - * Gets the value of the notificationType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNotificationType() { - return notificationType; - } - - /** - * Sets the value of the notificationType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNotificationType(String value) { - this.notificationType = value; - } - - /** - * Gets the value of the notificationEnabled property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNotificationEnabled() { - return notificationEnabled; - } - - /** - * Sets the value of the notificationEnabled property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNotificationEnabled(String value) { - this.notificationEnabled = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralNotificationStatusList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralNotificationStatusList.java deleted file mode 100644 index 4f1c4096c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralNotificationStatusList.java +++ /dev/null @@ -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; - - -/** - *

Java class for GeneralNotificationStatusList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeneralNotificationStatusList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="generalNotificationStatusData" type="{http://schema.ultraservice.neustar.com/v01/}GeneralNotificationStatusData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeneralNotificationStatusList", propOrder = { - "generalNotificationStatusData" -}) -public class GeneralNotificationStatusList { - - @XmlElement(required = true) - protected List generalNotificationStatusData; - - /** - * Gets the value of the generalNotificationStatusData property. - * - *

- * 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 set method for the generalNotificationStatusData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeneralNotificationStatusData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeneralNotificationStatusData } - * - * - */ - public List getGeneralNotificationStatusData() { - if (generalNotificationStatusData == null) { - generalNotificationStatusData = new ArrayList(); - } - return this.generalNotificationStatusData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralZoneProperties.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralZoneProperties.java deleted file mode 100644 index 3553c43e8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeneralZoneProperties.java +++ /dev/null @@ -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; - - -/** - *

Java class for GeneralZoneProperties complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeneralZoneProperties">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="resourceRecordCount" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
- *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="zoneType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="modified" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeneralZoneProperties") -public class GeneralZoneProperties { - - @XmlAttribute(name = "resourceRecordCount", required = true) - protected long resourceRecordCount; - @XmlAttribute(name = "name") - protected String name; - @XmlAttribute(name = "zoneType") - protected String zoneType; - @XmlAttribute(name = "modified") - protected String modified; - - /** - * 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 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 zoneType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getZoneType() { - return zoneType; - } - - /** - * Sets the value of the zoneType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setZoneType(String value) { - this.zoneType = value; - } - - /** - * Gets the value of the modified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModified() { - return modified; - } - - /** - * Sets the value of the modified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModified(String value) { - this.modified = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupData.java deleted file mode 100644 index c8c364794..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupData.java +++ /dev/null @@ -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; - - -/** - *

Java class for GeolocationGroupData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeolocationGroupData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GroupData" type="{http://schema.ultraservice.neustar.com/v01/}GroupData"/>
- *         <element name="GeolocationGroupDetails" type="{http://schema.ultraservice.neustar.com/v01/}GeolocationGroupDetails"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeolocationGroupData", propOrder = { - "groupData", - "geolocationGroupDetails" -}) -public class GeolocationGroupData { - - @XmlElement(name = "GroupData", required = true) - protected GroupData groupData; - @XmlElement(name = "GeolocationGroupDetails", required = true, nillable = true) - protected GeolocationGroupDetails geolocationGroupDetails; - - /** - * Gets the value of the groupData property. - * - * @return - * possible object is - * {@link GroupData } - * - */ - public GroupData getGroupData() { - return groupData; - } - - /** - * Sets the value of the groupData property. - * - * @param value - * allowed object is - * {@link GroupData } - * - */ - public void setGroupData(GroupData value) { - this.groupData = value; - } - - /** - * Gets the value of the geolocationGroupDetails property. - * - * @return - * possible object is - * {@link GeolocationGroupDetails } - * - */ - public GeolocationGroupDetails getGeolocationGroupDetails() { - return geolocationGroupDetails; - } - - /** - * Sets the value of the geolocationGroupDetails property. - * - * @param value - * allowed object is - * {@link GeolocationGroupDetails } - * - */ - public void setGeolocationGroupDetails(GeolocationGroupDetails value) { - this.geolocationGroupDetails = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupDefinitionData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupDefinitionData.java deleted file mode 100644 index 21b816893..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupDefinitionData.java +++ /dev/null @@ -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; - - -/** - *

Java class for GeolocationGroupDefinitionData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeolocationGroupDefinitionData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="regionName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="territoryNames" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeolocationGroupDefinitionData") -public class GeolocationGroupDefinitionData { - - @XmlAttribute(name = "regionName", required = true) - protected String regionName; - @XmlAttribute(name = "territoryNames", required = true) - protected String territoryNames; - - /** - * Gets the value of the regionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionName() { - return regionName; - } - - /** - * Sets the value of the regionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionName(String value) { - this.regionName = value; - } - - /** - * Gets the value of the territoryNames property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTerritoryNames() { - return territoryNames; - } - - /** - * Sets the value of the territoryNames property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTerritoryNames(String value) { - this.territoryNames = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupDetails.java deleted file mode 100644 index 344c47f31..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GeolocationGroupDetails.java +++ /dev/null @@ -1,128 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GeolocationGroupDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GeolocationGroupDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GeolocationGroupDefinitionData" type="{http://schema.ultraservice.neustar.com/v01/}GeolocationGroupDefinitionData" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="groupName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GeolocationGroupDetails", propOrder = { - "geolocationGroupDefinitionData" -}) -@XmlSeeAlso({ - UpdateGeolocationGroupDetails.class -}) -public class GeolocationGroupDetails { - - @XmlElement(name = "GeolocationGroupDefinitionData", required = true) - protected List geolocationGroupDefinitionData; - @XmlAttribute(name = "groupName", required = true) - protected String groupName; - @XmlAttribute(name = "description") - protected String description; - - /** - * Gets the value of the geolocationGroupDefinitionData property. - * - *

- * 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 set method for the geolocationGroupDefinitionData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGeolocationGroupDefinitionData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link GeolocationGroupDefinitionData } - * - * - */ - public List getGeolocationGroupDefinitionData() { - if (geolocationGroupDefinitionData == null) { - geolocationGroupDefinitionData = new ArrayList(); - } - return this.geolocationGroupDefinitionData; - } - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GlobalDirectionalGroupDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GlobalDirectionalGroupDetails.java deleted file mode 100644 index 63100ae37..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GlobalDirectionalGroupDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for GlobalDirectionalGroupDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GlobalDirectionalGroupDetails">
- *   <complexContent>
- *     <extension base="{http://schema.ultraservice.neustar.com/v01/}DirectionalDNSGroupDetail">
- *       <sequence>
- *       </sequence>
- *       <attribute name="accountId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlobalDirectionalGroupDetails") -public class GlobalDirectionalGroupDetails - extends DirectionalDNSGroupDetail -{ - - @XmlAttribute(name = "accountId", required = true) - protected String accountId; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GlobalDirectionalGroupUpdateDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GlobalDirectionalGroupUpdateDetails.java deleted file mode 100644 index 3ff694fce..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GlobalDirectionalGroupUpdateDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for GlobalDirectionalGroupUpdateDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GlobalDirectionalGroupUpdateDetails">
- *   <complexContent>
- *     <extension base="{http://schema.ultraservice.neustar.com/v01/}DirectionalDNSGroupDetail">
- *       <sequence>
- *       </sequence>
- *       <attribute name="GroupId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GlobalDirectionalGroupUpdateDetails") -public class GlobalDirectionalGroupUpdateDetails - extends DirectionalDNSGroupDetail -{ - - @XmlAttribute(name = "GroupId", required = true) - protected String groupId; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GraphType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GraphType.java deleted file mode 100644 index 150931475..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GraphType.java +++ /dev/null @@ -1,60 +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; - - -/** - *

Java class for graphType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="graphType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Text"/>
- *     <enumeration value="Bar"/>
- *     <enumeration value="Step"/>
- *     <enumeration value="Line"/>
- *     <enumeration value="Area"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "graphType") -@XmlEnum -public enum GraphType { - - @XmlEnumValue("Text") - TEXT("Text"), - @XmlEnumValue("Bar") - BAR("Bar"), - @XmlEnumValue("Step") - STEP("Step"), - @XmlEnumValue("Line") - LINE("Line"), - @XmlEnumValue("Area") - AREA("Area"); - private final String value; - - GraphType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static GraphType fromValue(String v) { - for (GraphType c: GraphType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GroupData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GroupData.java deleted file mode 100644 index 547c849b0..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GroupData.java +++ /dev/null @@ -1,168 +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; - - -/** - *

Java class for GroupData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="GroupData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="groupingType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}GroupingType" />
- *       <attribute name="copyExistingGroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="newCopiedGroupName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="assignExistingGroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="assignGlobalGroupId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "GroupData") -public class GroupData { - - @XmlAttribute(name = "groupingType", required = true) - protected GroupingType groupingType; - @XmlAttribute(name = "copyExistingGroupId") - protected String copyExistingGroupId; - @XmlAttribute(name = "newCopiedGroupName") - protected String newCopiedGroupName; - @XmlAttribute(name = "assignExistingGroupId") - protected String assignExistingGroupId; - @XmlAttribute(name = "assignGlobalGroupId") - protected String assignGlobalGroupId; - - /** - * Gets the value of the groupingType property. - * - * @return - * possible object is - * {@link GroupingType } - * - */ - public GroupingType getGroupingType() { - return groupingType; - } - - /** - * Sets the value of the groupingType property. - * - * @param value - * allowed object is - * {@link GroupingType } - * - */ - public void setGroupingType(GroupingType value) { - this.groupingType = value; - } - - /** - * Gets the value of the copyExistingGroupId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCopyExistingGroupId() { - return copyExistingGroupId; - } - - /** - * Sets the value of the copyExistingGroupId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCopyExistingGroupId(String value) { - this.copyExistingGroupId = value; - } - - /** - * Gets the value of the newCopiedGroupName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNewCopiedGroupName() { - return newCopiedGroupName; - } - - /** - * Sets the value of the newCopiedGroupName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNewCopiedGroupName(String value) { - this.newCopiedGroupName = value; - } - - /** - * Gets the value of the assignExistingGroupId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAssignExistingGroupId() { - return assignExistingGroupId; - } - - /** - * Sets the value of the assignExistingGroupId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAssignExistingGroupId(String value) { - this.assignExistingGroupId = value; - } - - /** - * Gets the value of the assignGlobalGroupId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAssignGlobalGroupId() { - return assignGlobalGroupId; - } - - /** - * Sets the value of the assignGlobalGroupId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAssignGlobalGroupId(String value) { - this.assignGlobalGroupId = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GroupingType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GroupingType.java deleted file mode 100644 index ead4c7736..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/GroupingType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for GroupingType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="GroupingType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="DEFINE_NEW_GROUP"/>
- *     <enumeration value="COPY_EXISTING_GROUP"/>
- *     <enumeration value="ASSIGN_EXISTING_GROUP"/>
- *     <enumeration value="ASSIGN_GLOBAL_GROUP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "GroupingType") -@XmlEnum -public enum GroupingType { - - DEFINE_NEW_GROUP, - COPY_EXISTING_GROUP, - ASSIGN_EXISTING_GROUP, - ASSIGN_GLOBAL_GROUP; - - public String value() { - return name(); - } - - public static GroupingType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HTTPProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HTTPProbeData.java deleted file mode 100644 index ab59035ae..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HTTPProbeData.java +++ /dev/null @@ -1,843 +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; - - -/** - *

Java class for HTTPProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HTTPProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="addTransaction" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="editTransactionStep" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="hostName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="webPage" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="protocol" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="method" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="transmittedData" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="searchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="connectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="totalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failTotalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalTotalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningTotalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failSearchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalSearchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningSearchString" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HTTPProbeData") -public class HTTPProbeData { - - @XmlAttribute(name = "addTransaction") - protected String addTransaction; - @XmlAttribute(name = "editTransactionStep") - protected String editTransactionStep; - @XmlAttribute(name = "port") - protected String port; - @XmlAttribute(name = "hostName") - protected String hostName; - @XmlAttribute(name = "webPage") - protected String webPage; - @XmlAttribute(name = "protocol") - protected String protocol; - @XmlAttribute(name = "method") - protected String method; - @XmlAttribute(name = "transmittedData") - protected String transmittedData; - @XmlAttribute(name = "searchString") - protected String searchString; - @XmlAttribute(name = "connectTime") - protected String connectTime; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "totalRuntime") - protected String totalRuntime; - @XmlAttribute(name = "failTotalRuntime") - protected String failTotalRuntime; - @XmlAttribute(name = "criticalTotalRuntime") - protected String criticalTotalRuntime; - @XmlAttribute(name = "warningTotalRuntime") - protected String warningTotalRuntime; - @XmlAttribute(name = "failConnectTime") - protected String failConnectTime; - @XmlAttribute(name = "criticalConnectTime") - protected String criticalConnectTime; - @XmlAttribute(name = "warningConnectTime") - protected String warningConnectTime; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - @XmlAttribute(name = "failSearchString") - protected String failSearchString; - @XmlAttribute(name = "criticalSearchString") - protected String criticalSearchString; - @XmlAttribute(name = "warningSearchString") - protected String warningSearchString; - @XmlAttribute(name = "failAverageConnectTime") - protected String failAverageConnectTime; - @XmlAttribute(name = "criticalAverageConnectTime") - protected String criticalAverageConnectTime; - @XmlAttribute(name = "warningAverageConnectTime") - protected String warningAverageConnectTime; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - - /** - * Gets the value of the addTransaction property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddTransaction() { - return addTransaction; - } - - /** - * Sets the value of the addTransaction property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddTransaction(String value) { - this.addTransaction = value; - } - - /** - * Gets the value of the editTransactionStep property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEditTransactionStep() { - return editTransactionStep; - } - - /** - * Sets the value of the editTransactionStep property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEditTransactionStep(String value) { - this.editTransactionStep = value; - } - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort(String value) { - this.port = 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; - } - - /** - * Gets the value of the webPage property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWebPage() { - return webPage; - } - - /** - * Sets the value of the webPage property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWebPage(String value) { - this.webPage = value; - } - - /** - * Gets the value of the protocol property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProtocol() { - return protocol; - } - - /** - * Sets the value of the protocol property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProtocol(String value) { - this.protocol = value; - } - - /** - * Gets the value of the method property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMethod() { - return method; - } - - /** - * Sets the value of the method property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMethod(String value) { - this.method = value; - } - - /** - * Gets the value of the transmittedData property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTransmittedData() { - return transmittedData; - } - - /** - * Sets the value of the transmittedData property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTransmittedData(String value) { - this.transmittedData = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConnectTime(String value) { - this.connectTime = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the totalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotalRuntime() { - return totalRuntime; - } - - /** - * Sets the value of the totalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotalRuntime(String value) { - this.totalRuntime = value; - } - - /** - * Gets the value of the failTotalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailTotalRuntime() { - return failTotalRuntime; - } - - /** - * Sets the value of the failTotalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailTotalRuntime(String value) { - this.failTotalRuntime = value; - } - - /** - * Gets the value of the criticalTotalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalTotalRuntime() { - return criticalTotalRuntime; - } - - /** - * Sets the value of the criticalTotalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalTotalRuntime(String value) { - this.criticalTotalRuntime = value; - } - - /** - * Gets the value of the warningTotalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningTotalRuntime() { - return warningTotalRuntime; - } - - /** - * Sets the value of the warningTotalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningTotalRuntime(String value) { - this.warningTotalRuntime = value; - } - - /** - * Gets the value of the failConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailConnectTime() { - return failConnectTime; - } - - /** - * Sets the value of the failConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailConnectTime(String value) { - this.failConnectTime = value; - } - - /** - * Gets the value of the criticalConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalConnectTime() { - return criticalConnectTime; - } - - /** - * Sets the value of the criticalConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalConnectTime(String value) { - this.criticalConnectTime = value; - } - - /** - * Gets the value of the warningConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningConnectTime() { - return warningConnectTime; - } - - /** - * Sets the value of the warningConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningConnectTime(String value) { - this.warningConnectTime = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - - /** - * Gets the value of the failSearchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailSearchString() { - return failSearchString; - } - - /** - * Sets the value of the failSearchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailSearchString(String value) { - this.failSearchString = value; - } - - /** - * Gets the value of the criticalSearchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalSearchString() { - return criticalSearchString; - } - - /** - * Sets the value of the criticalSearchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalSearchString(String value) { - this.criticalSearchString = value; - } - - /** - * Gets the value of the warningSearchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningSearchString() { - return warningSearchString; - } - - /** - * Sets the value of the warningSearchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningSearchString(String value) { - this.warningSearchString = value; - } - - /** - * Gets the value of the failAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageConnectTime() { - return failAverageConnectTime; - } - - /** - * Sets the value of the failAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageConnectTime(String value) { - this.failAverageConnectTime = value; - } - - /** - * Gets the value of the criticalAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageConnectTime() { - return criticalAverageConnectTime; - } - - /** - * Sets the value of the criticalAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageConnectTime(String value) { - this.criticalAverageConnectTime = value; - } - - /** - * Gets the value of the warningAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageConnectTime() { - return warningAverageConnectTime; - } - - /** - * Sets the value of the warningAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageConnectTime(String value) { - this.warningAverageConnectTime = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HTTPTransaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HTTPTransaction.java deleted file mode 100644 index decb84c8f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HTTPTransaction.java +++ /dev/null @@ -1,304 +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; - - -/** - *

Java class for HTTPTransaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HTTPTransaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}HttpCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}HttpCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}HttpCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="hostName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="webPage" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="protocol" type="{http://schema.ultraservice.neustar.com/v01/}protocol" />
- *       <attribute name="method" type="{http://schema.ultraservice.neustar.com/v01/}method" />
- *       <attribute name="transmittedData" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="followRedirect" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HTTPTransaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class HTTPTransaction { - - protected HttpCriteria warningCriteria; - protected HttpCriteria criticalCriteria; - protected HttpCriteria failCriteria; - @XmlAttribute(name = "port") - protected Integer port; - @XmlAttribute(name = "hostName") - protected String hostName; - @XmlAttribute(name = "webPage") - protected String webPage; - @XmlAttribute(name = "protocol") - protected Protocol protocol; - @XmlAttribute(name = "method") - protected Method method; - @XmlAttribute(name = "transmittedData") - protected String transmittedData; - @XmlAttribute(name = "followRedirect") - protected Boolean followRedirect; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link HttpCriteria } - * - */ - public HttpCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link HttpCriteria } - * - */ - public void setWarningCriteria(HttpCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link HttpCriteria } - * - */ - public HttpCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link HttpCriteria } - * - */ - public void setCriticalCriteria(HttpCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link HttpCriteria } - * - */ - public HttpCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link HttpCriteria } - * - */ - public void setFailCriteria(HttpCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPort(Integer value) { - this.port = 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; - } - - /** - * Gets the value of the webPage property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWebPage() { - return webPage; - } - - /** - * Sets the value of the webPage property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWebPage(String value) { - this.webPage = value; - } - - /** - * Gets the value of the protocol property. - * - * @return - * possible object is - * {@link Protocol } - * - */ - public Protocol getProtocol() { - return protocol; - } - - /** - * Sets the value of the protocol property. - * - * @param value - * allowed object is - * {@link Protocol } - * - */ - public void setProtocol(Protocol value) { - this.protocol = value; - } - - /** - * Gets the value of the method property. - * - * @return - * possible object is - * {@link Method } - * - */ - public Method getMethod() { - return method; - } - - /** - * Sets the value of the method property. - * - * @param value - * allowed object is - * {@link Method } - * - */ - public void setMethod(Method value) { - this.method = value; - } - - /** - * Gets the value of the transmittedData property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTransmittedData() { - return transmittedData; - } - - /** - * Sets the value of the transmittedData property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTransmittedData(String value) { - this.transmittedData = value; - } - - /** - * Gets the value of the followRedirect property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isFollowRedirect() { - return followRedirect; - } - - /** - * Sets the value of the followRedirect property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setFollowRedirect(Boolean value) { - this.followRedirect = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HeaderRule.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HeaderRule.java deleted file mode 100644 index e8c72b197..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HeaderRule.java +++ /dev/null @@ -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; - - -/** - *

Java class for HeaderRule complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HeaderRule">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="headerField" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="matchCriteria" use="required" type="{http://schema.ultraservice.neustar.com/v01/}MatchCriteria" />
- *       <attribute name="headerValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="caseInsensitive" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HeaderRule") -public class HeaderRule { - - @XmlAttribute(name = "headerField", required = true) - protected String headerField; - @XmlAttribute(name = "matchCriteria", required = true) - protected MatchCriteria matchCriteria; - @XmlAttribute(name = "headerValue", required = true) - protected String headerValue; - @XmlAttribute(name = "caseInsensitive", required = true) - protected boolean caseInsensitive; - - /** - * Gets the value of the headerField property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHeaderField() { - return headerField; - } - - /** - * Sets the value of the headerField property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHeaderField(String value) { - this.headerField = value; - } - - /** - * Gets the value of the matchCriteria property. - * - * @return - * possible object is - * {@link MatchCriteria } - * - */ - public MatchCriteria getMatchCriteria() { - return matchCriteria; - } - - /** - * Sets the value of the matchCriteria property. - * - * @param value - * allowed object is - * {@link MatchCriteria } - * - */ - public void setMatchCriteria(MatchCriteria value) { - this.matchCriteria = value; - } - - /** - * Gets the value of the headerValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getHeaderValue() { - return headerValue; - } - - /** - * Sets the value of the headerValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setHeaderValue(String value) { - this.headerValue = value; - } - - /** - * Gets the value of the caseInsensitive property. - * - */ - public boolean isCaseInsensitive() { - return caseInsensitive; - } - - /** - * Sets the value of the caseInsensitive property. - * - */ - public void setCaseInsensitive(boolean value) { - this.caseInsensitive = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HealthCheckList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HealthCheckList.java deleted file mode 100644 index 3a8d2067b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HealthCheckList.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for HealthCheckList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HealthCheckList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="currentAPIVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="dbConnectionCheck" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="services" type="{http://schema.ultraservice.neustar.com/v01/}ServiceList" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HealthCheckList", propOrder = { - "currentAPIVersion", - "dbConnectionCheck", - "services" -}) -public class HealthCheckList { - - protected String currentAPIVersion; - protected String dbConnectionCheck; - protected ServiceList services; - - /** - * Gets the value of the currentAPIVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCurrentAPIVersion() { - return currentAPIVersion; - } - - /** - * Sets the value of the currentAPIVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCurrentAPIVersion(String value) { - this.currentAPIVersion = value; - } - - /** - * Gets the value of the dbConnectionCheck property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDbConnectionCheck() { - return dbConnectionCheck; - } - - /** - * Sets the value of the dbConnectionCheck property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDbConnectionCheck(String value) { - this.dbConnectionCheck = value; - } - - /** - * Gets the value of the services property. - * - * @return - * possible object is - * {@link ServiceList } - * - */ - public ServiceList getServices() { - return services; - } - - /** - * Sets the value of the services property. - * - * @param value - * allowed object is - * {@link ServiceList } - * - */ - public void setServices(ServiceList value) { - this.services = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HttpCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HttpCriteria.java deleted file mode 100644 index a7a39b4ba..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/HttpCriteria.java +++ /dev/null @@ -1,197 +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; - - -/** - *

Java class for HttpCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="HttpCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="connectTime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="connectTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="runTime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="runTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="runTimeTotal" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="searchString" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "HttpCriteria", propOrder = { - "connectTime", - "connectTimeAverage", - "runTime", - "runTimeAverage", - "runTimeTotal", - "searchString" -}) -public class HttpCriteria { - - protected Integer connectTime; - protected Integer connectTimeAverage; - protected Integer runTime; - protected Integer runTimeAverage; - protected Integer runTimeTotal; - @XmlElement(required = true) - protected String searchString; - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTime(Integer value) { - this.connectTime = value; - } - - /** - * Gets the value of the connectTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTimeAverage() { - return connectTimeAverage; - } - - /** - * Sets the value of the connectTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTimeAverage(Integer value) { - this.connectTimeAverage = value; - } - - /** - * Gets the value of the runTime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTime() { - return runTime; - } - - /** - * Sets the value of the runTime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTime(Integer value) { - this.runTime = value; - } - - /** - * Gets the value of the runTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTimeAverage() { - return runTimeAverage; - } - - /** - * Sets the value of the runTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTimeAverage(Integer value) { - this.runTimeAverage = value; - } - - /** - * Gets the value of the runTimeTotal property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTimeTotal() { - return runTimeTotal; - } - - /** - * Sets the value of the runTimeTotal property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTimeTotal(Integer value) { - this.runTimeTotal = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InactiveTimeOutPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InactiveTimeOutPreference.java deleted file mode 100644 index d9ff5d0e5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InactiveTimeOutPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for InactiveTimeOutPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InactiveTimeOutPreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="InactiveTimeOut" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InactiveTimeOutPreference") -public class InactiveTimeOutPreference { - - @XmlAttribute(name = "InactiveTimeOut") - protected String inactiveTimeOut; - - /** - * Gets the value of the inactiveTimeOut property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInactiveTimeOut() { - return inactiveTimeOut; - } - - /** - * Sets the value of the inactiveTimeOut property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInactiveTimeOut(String value) { - this.inactiveTimeOut = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InfoTypes.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InfoTypes.java deleted file mode 100644 index b12dad8d9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InfoTypes.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for InfoTypes complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InfoTypes">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *       <attribute name="Info1Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info2Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info3Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info4Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info5Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info6Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info7Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info8Type" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InfoTypes", propOrder = { - "value" -}) -public class InfoTypes { - - @XmlValue - protected String value; - @XmlAttribute(name = "Info1Type") - protected String info1Type; - @XmlAttribute(name = "Info2Type") - protected String info2Type; - @XmlAttribute(name = "Info3Type") - protected String info3Type; - @XmlAttribute(name = "Info4Type") - protected String info4Type; - @XmlAttribute(name = "Info5Type") - protected String info5Type; - @XmlAttribute(name = "Info6Type") - protected String info6Type; - @XmlAttribute(name = "Info7Type") - protected String info7Type; - @XmlAttribute(name = "Info8Type") - protected String info8Type; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - /** - * Gets the value of the info1Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo1Type() { - return info1Type; - } - - /** - * Sets the value of the info1Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo1Type(String value) { - this.info1Type = value; - } - - /** - * Gets the value of the info2Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo2Type() { - return info2Type; - } - - /** - * Sets the value of the info2Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo2Type(String value) { - this.info2Type = value; - } - - /** - * Gets the value of the info3Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo3Type() { - return info3Type; - } - - /** - * Sets the value of the info3Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo3Type(String value) { - this.info3Type = value; - } - - /** - * Gets the value of the info4Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo4Type() { - return info4Type; - } - - /** - * Sets the value of the info4Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo4Type(String value) { - this.info4Type = value; - } - - /** - * Gets the value of the info5Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo5Type() { - return info5Type; - } - - /** - * Sets the value of the info5Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo5Type(String value) { - this.info5Type = value; - } - - /** - * Gets the value of the info6Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo6Type() { - return info6Type; - } - - /** - * Sets the value of the info6Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo6Type(String value) { - this.info6Type = value; - } - - /** - * Gets the value of the info7Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo7Type() { - return info7Type; - } - - /** - * Sets the value of the info7Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo7Type(String value) { - this.info7Type = value; - } - - /** - * Gets the value of the info8Type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo8Type() { - return info8Type; - } - - /** - * Sets the value of the info8Type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo8Type(String value) { - this.info8Type = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InfoValues.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InfoValues.java deleted file mode 100644 index 4d3a90100..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/InfoValues.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlType; -import javax.xml.bind.annotation.XmlValue; - - -/** - *

Java class for InfoValues complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="InfoValues">
- *   <simpleContent>
- *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
- *       <attribute name="Info1Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info2Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info3Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info4Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info5Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info6Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info7Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Info8Value" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </extension>
- *   </simpleContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "InfoValues", propOrder = { - "value" -}) -public class InfoValues { - - @XmlValue - protected String value; - @XmlAttribute(name = "Info1Value") - protected String info1Value; - @XmlAttribute(name = "Info2Value") - protected String info2Value; - @XmlAttribute(name = "Info3Value") - protected String info3Value; - @XmlAttribute(name = "Info4Value") - protected String info4Value; - @XmlAttribute(name = "Info5Value") - protected String info5Value; - @XmlAttribute(name = "Info6Value") - protected String info6Value; - @XmlAttribute(name = "Info7Value") - protected String info7Value; - @XmlAttribute(name = "Info8Value") - protected String info8Value; - - /** - * Gets the value of the value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getValue() { - return value; - } - - /** - * Sets the value of the value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setValue(String value) { - this.value = value; - } - - /** - * Gets the value of the info1Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo1Value() { - return info1Value; - } - - /** - * Sets the value of the info1Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo1Value(String value) { - this.info1Value = value; - } - - /** - * Gets the value of the info2Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo2Value() { - return info2Value; - } - - /** - * Sets the value of the info2Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo2Value(String value) { - this.info2Value = value; - } - - /** - * Gets the value of the info3Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo3Value() { - return info3Value; - } - - /** - * Sets the value of the info3Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo3Value(String value) { - this.info3Value = value; - } - - /** - * Gets the value of the info4Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo4Value() { - return info4Value; - } - - /** - * Sets the value of the info4Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo4Value(String value) { - this.info4Value = value; - } - - /** - * Gets the value of the info5Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo5Value() { - return info5Value; - } - - /** - * Sets the value of the info5Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo5Value(String value) { - this.info5Value = value; - } - - /** - * Gets the value of the info6Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo6Value() { - return info6Value; - } - - /** - * Sets the value of the info6Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo6Value(String value) { - this.info6Value = value; - } - - /** - * Gets the value of the info7Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo7Value() { - return info7Value; - } - - /** - * Sets the value of the info7Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo7Value(String value) { - this.info7Value = value; - } - - /** - * Gets the value of the info8Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo8Value() { - return info8Value; - } - - /** - * Sets the value of the info8Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo8Value(String value) { - this.info8Value = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/LBPoolData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/LBPoolData.java deleted file mode 100644 index da8702bf5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/LBPoolData.java +++ /dev/null @@ -1,97 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for LBPoolData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LBPoolData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PoolData" type="{http://schema.ultraservice.neustar.com/v01/}PoolData" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="zoneid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LBPoolData", propOrder = { - "poolData" -}) -public class LBPoolData { - - @XmlElement(name = "PoolData", required = true) - protected List poolData; - @XmlAttribute(name = "zoneid", required = true) - protected String zoneid; - - /** - * Gets the value of the poolData property. - * - *

- * 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 set method for the poolData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolData } - * - * - */ - public List getPoolData() { - if (poolData == null) { - poolData = new ArrayList(); - } - return this.poolData; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/LBPoolList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/LBPoolList.java deleted file mode 100644 index 4b0ad7077..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/LBPoolList.java +++ /dev/null @@ -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; - - -/** - *

Java class for LBPoolList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="LBPoolList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="LBPoolData" type="{http://schema.ultraservice.neustar.com/v01/}LBPoolData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "LBPoolList", propOrder = { - "lbPoolData" -}) -public class LBPoolList { - - @XmlElement(name = "LBPoolData", required = true) - protected List lbPoolData; - - /** - * Gets the value of the lbPoolData property. - * - *

- * 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 set method for the lbPoolData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLBPoolData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link LBPoolData } - * - * - */ - public List getLBPoolData() { - if (lbPoolData == null) { - lbPoolData = new ArrayList(); - } - return this.lbPoolData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MailForwardRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MailForwardRecord.java deleted file mode 100644 index b8257c288..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MailForwardRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for Mail_Forward_Record complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Mail_Forward_Record">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ForwardTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="EmailTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Guid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Mail_Forward_Record") -public class MailForwardRecord { - - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "ForwardTo", required = true) - protected String forwardTo; - @XmlAttribute(name = "EmailTo", required = true) - protected String emailTo; - @XmlAttribute(name = "Guid", required = true) - protected String guid; - - /** - * 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 forwardTo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getForwardTo() { - return forwardTo; - } - - /** - * Sets the value of the forwardTo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setForwardTo(String value) { - this.forwardTo = value; - } - - /** - * Gets the value of the emailTo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEmailTo() { - return emailTo; - } - - /** - * Sets the value of the emailTo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEmailTo(String value) { - this.emailTo = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MailFwdRecordsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MailFwdRecordsList.java deleted file mode 100644 index c1e309ff4..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MailFwdRecordsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for MailFwdRecordsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MailFwdRecordsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Mail_Forward_Record" type="{http://schema.ultraservice.neustar.com/v01/}Mail_Forward_Record" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MailFwdRecordsList", propOrder = { - "mailForwardRecord" -}) -public class MailFwdRecordsList { - - @XmlElement(name = "Mail_Forward_Record", required = true) - protected List mailForwardRecord; - - /** - * Gets the value of the mailForwardRecord property. - * - *

- * 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 set method for the mailForwardRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMailForwardRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MailForwardRecord } - * - * - */ - public List getMailForwardRecord() { - if (mailForwardRecord == null) { - mailForwardRecord = new ArrayList(); - } - return this.mailForwardRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MaintenanceAlertsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MaintenanceAlertsData.java deleted file mode 100644 index 01c0e6031..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MaintenanceAlertsData.java +++ /dev/null @@ -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; - - -/** - *

Java class for MaintenanceAlertsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MaintenanceAlertsData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="startDate" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="endDate" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MaintenanceAlertsData") -public class MaintenanceAlertsData { - - @XmlAttribute(name = "startDate") - protected String startDate; - @XmlAttribute(name = "endDate") - protected String endDate; - @XmlAttribute(name = "Description") - protected String description; - - /** - * Gets the value of the startDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartDate() { - return startDate; - } - - /** - * Sets the value of the startDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartDate(String value) { - this.startDate = value; - } - - /** - * Gets the value of the endDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEndDate() { - return endDate; - } - - /** - * Sets the value of the endDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndDate(String value) { - this.endDate = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MatchCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MatchCriteria.java deleted file mode 100644 index 5c6fb7c93..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MatchCriteria.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MatchCriteria. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="MatchCriteria">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="BEGINS_WITH"/>
- *     <enumeration value="CONTAINS"/>
- *     <enumeration value="ENDS_WITH"/>
- *     <enumeration value="MATCHES"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "MatchCriteria") -@XmlEnum -public enum MatchCriteria { - - BEGINS_WITH, - CONTAINS, - ENDS_WITH, - MATCHES; - - public String value() { - return name(); - } - - public static MatchCriteria fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Method.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Method.java deleted file mode 100644 index 62e8eb3a9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Method.java +++ /dev/null @@ -1,38 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for method. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="method">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="GET"/>
- *     <enumeration value="POST"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "method") -@XmlEnum -public enum Method { - - GET, - POST; - - public String value() { - return name(); - } - - public static Method fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPool.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPool.java deleted file mode 100644 index 1d03638db..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPool.java +++ /dev/null @@ -1,255 +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; - - -/** - *

Java class for MonitoredRDPool complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPool">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="monitoredRDPoolKey" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolKey"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="poolRecords" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecords"/>
- *         <element name="allFailRecord" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecord" minOccurs="0"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolMonitor"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold"/>
- *         <element name="status" type="{http://schema.ultraservice.neustar.com/v01/}StatusEnum" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPool", propOrder = { - "monitoredRDPoolKey", - "description", - "poolRecords", - "allFailRecord", - "ttl", - "monitor", - "regionThreshold", - "status" -}) -public class MonitoredRDPool { - - @XmlElement(required = true) - protected MonitoredRDPoolKey monitoredRDPoolKey; - protected String description; - @XmlElement(required = true) - protected MonitoredRDPoolRecords poolRecords; - protected MonitoredRDPoolRecord allFailRecord; - @XmlElement(required = true, type = Long.class, nillable = true) - protected Long ttl; - @XmlElement(required = true) - protected MonitoredRDPoolMonitor monitor; - @XmlElement(required = true) - protected SimpleFailoverPoolRegionThreshold regionThreshold; - protected StatusEnum status; - - /** - * Gets the value of the monitoredRDPoolKey property. - * - * @return - * possible object is - * {@link MonitoredRDPoolKey } - * - */ - public MonitoredRDPoolKey getMonitoredRDPoolKey() { - return monitoredRDPoolKey; - } - - /** - * Sets the value of the monitoredRDPoolKey property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolKey } - * - */ - public void setMonitoredRDPoolKey(MonitoredRDPoolKey value) { - this.monitoredRDPoolKey = 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 poolRecords property. - * - * @return - * possible object is - * {@link MonitoredRDPoolRecords } - * - */ - public MonitoredRDPoolRecords getPoolRecords() { - return poolRecords; - } - - /** - * Sets the value of the poolRecords property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolRecords } - * - */ - public void setPoolRecords(MonitoredRDPoolRecords value) { - this.poolRecords = value; - } - - /** - * Gets the value of the allFailRecord property. - * - * @return - * possible object is - * {@link MonitoredRDPoolRecord } - * - */ - public MonitoredRDPoolRecord getAllFailRecord() { - return allFailRecord; - } - - /** - * Sets the value of the allFailRecord property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolRecord } - * - */ - public void setAllFailRecord(MonitoredRDPoolRecord value) { - this.allFailRecord = 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 monitor property. - * - * @return - * possible object is - * {@link MonitoredRDPoolMonitor } - * - */ - public MonitoredRDPoolMonitor getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolMonitor } - * - */ - public void setMonitor(MonitoredRDPoolMonitor value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolAdd.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolAdd.java deleted file mode 100644 index eddcb839a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolAdd.java +++ /dev/null @@ -1,228 +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; - - -/** - *

Java class for MonitoredRDPoolAdd complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolAdd">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="monitoredRDPoolKey" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolKey"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="poolRecords" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecordsAdd"/>
- *         <element name="allFailRecord" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecordAdd" minOccurs="0"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolMonitor"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolAdd", propOrder = { - "monitoredRDPoolKey", - "description", - "poolRecords", - "allFailRecord", - "ttl", - "monitor", - "regionThreshold" -}) -public class MonitoredRDPoolAdd { - - @XmlElement(required = true) - protected MonitoredRDPoolKey monitoredRDPoolKey; - protected String description; - @XmlElement(required = true) - protected MonitoredRDPoolRecordsAdd poolRecords; - protected MonitoredRDPoolRecordAdd allFailRecord; - @XmlElement(required = true, type = Long.class, nillable = true) - protected Long ttl; - @XmlElement(required = true) - protected MonitoredRDPoolMonitor monitor; - @XmlElement(required = true) - protected SimpleFailoverPoolRegionThreshold regionThreshold; - - /** - * Gets the value of the monitoredRDPoolKey property. - * - * @return - * possible object is - * {@link MonitoredRDPoolKey } - * - */ - public MonitoredRDPoolKey getMonitoredRDPoolKey() { - return monitoredRDPoolKey; - } - - /** - * Sets the value of the monitoredRDPoolKey property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolKey } - * - */ - public void setMonitoredRDPoolKey(MonitoredRDPoolKey value) { - this.monitoredRDPoolKey = 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 poolRecords property. - * - * @return - * possible object is - * {@link MonitoredRDPoolRecordsAdd } - * - */ - public MonitoredRDPoolRecordsAdd getPoolRecords() { - return poolRecords; - } - - /** - * Sets the value of the poolRecords property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolRecordsAdd } - * - */ - public void setPoolRecords(MonitoredRDPoolRecordsAdd value) { - this.poolRecords = value; - } - - /** - * Gets the value of the allFailRecord property. - * - * @return - * possible object is - * {@link MonitoredRDPoolRecordAdd } - * - */ - public MonitoredRDPoolRecordAdd getAllFailRecord() { - return allFailRecord; - } - - /** - * Sets the value of the allFailRecord property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolRecordAdd } - * - */ - public void setAllFailRecord(MonitoredRDPoolRecordAdd value) { - this.allFailRecord = 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 monitor property. - * - * @return - * possible object is - * {@link MonitoredRDPoolMonitor } - * - */ - public MonitoredRDPoolMonitor getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolMonitor } - * - */ - public void setMonitor(MonitoredRDPoolMonitor value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolAllFailRecordUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolAllFailRecordUpdate.java deleted file mode 100644 index 3d2882ac5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolAllFailRecordUpdate.java +++ /dev/null @@ -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; - - -/** - *

Java class for MonitoredRDPoolAllFailRecordUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolAllFailRecordUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="recordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolAllFailRecordUpdate", propOrder = { - "recordValue", - "description" -}) -public class MonitoredRDPoolAllFailRecordUpdate { - - @XmlElement(required = true) - protected String recordValue; - protected String description; - - /** - * Gets the value of the recordValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordValue() { - return recordValue; - } - - /** - * Sets the value of the recordValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordValue(String value) { - this.recordValue = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolConversionInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolConversionInfo.java deleted file mode 100644 index 53b114ead..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolConversionInfo.java +++ /dev/null @@ -1,118 +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; -import com.neustar.ultra.api.webservice.v01.ConversionTypeEnum; - - -/** - *

Java class for MonitoredRDPoolConversionInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolConversionInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="monitoredRDPoolKey" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolKey"/>
- *         <element name="conversionType" type="{http://webservice.api.ultra.neustar.com/v01/}conversionTypeEnum"/>
- *         <element name="keptRecord" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolConversionInfo", propOrder = { - "monitoredRDPoolKey", - "conversionType", - "keptRecord" -}) -public class MonitoredRDPoolConversionInfo { - - @XmlElement(required = true) - protected MonitoredRDPoolKey monitoredRDPoolKey; - @XmlElement(required = true) - protected ConversionTypeEnum conversionType; - protected String keptRecord; - - /** - * Gets the value of the monitoredRDPoolKey property. - * - * @return - * possible object is - * {@link MonitoredRDPoolKey } - * - */ - public MonitoredRDPoolKey getMonitoredRDPoolKey() { - return monitoredRDPoolKey; - } - - /** - * Sets the value of the monitoredRDPoolKey property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolKey } - * - */ - public void setMonitoredRDPoolKey(MonitoredRDPoolKey value) { - this.monitoredRDPoolKey = value; - } - - /** - * Gets the value of the conversionType property. - * - * @return - * possible object is - * {@link ConversionTypeEnum } - * - */ - public ConversionTypeEnum getConversionType() { - return conversionType; - } - - /** - * Sets the value of the conversionType property. - * - * @param value - * allowed object is - * {@link ConversionTypeEnum } - * - */ - public void setConversionType(ConversionTypeEnum value) { - this.conversionType = value; - } - - /** - * Gets the value of the keptRecord property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeptRecord() { - return keptRecord; - } - - /** - * Sets the value of the keptRecord property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeptRecord(String value) { - this.keptRecord = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolKey.java deleted file mode 100644 index d0648dd03..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for MonitoredRDPoolKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolKey">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolKey", propOrder = { - "zoneName", - "hostName", - "type" -}) -public class MonitoredRDPoolKey { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected String hostName; - protected String type; - - /** - * 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; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolListKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolListKey.java deleted file mode 100644 index 39a34a5c1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolListKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for MonitoredRDPoolListKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolListKey">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="poolListParams" type="{http://schema.ultraservice.neustar.com/v01/}PoolListParams"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolListKey", propOrder = { - "zoneName", - "poolListParams" -}) -public class MonitoredRDPoolListKey { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected PoolListParams poolListParams; - - /** - * 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 poolListParams property. - * - * @return - * possible object is - * {@link PoolListParams } - * - */ - public PoolListParams getPoolListParams() { - return poolListParams; - } - - /** - * Sets the value of the poolListParams property. - * - * @param value - * allowed object is - * {@link PoolListParams } - * - */ - public void setPoolListParams(PoolListParams value) { - this.poolListParams = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolMonitor.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolMonitor.java deleted file mode 100644 index b95103501..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolMonitor.java +++ /dev/null @@ -1,144 +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; - - -/** - *

Java class for MonitoredRDPoolMonitor complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolMonitor">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="method" type="{http://schema.ultraservice.neustar.com/v01/}failoverMonitorMethod"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="transmittedData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="searchString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolMonitor", propOrder = { - "method", - "url", - "transmittedData", - "searchString" -}) -public class MonitoredRDPoolMonitor { - - @XmlElement(required = true) - protected FailoverMonitorMethod method; - @XmlElement(required = true) - protected String url; - protected String transmittedData; - protected String searchString; - - /** - * Gets the value of the method property. - * - * @return - * possible object is - * {@link FailoverMonitorMethod } - * - */ - public FailoverMonitorMethod getMethod() { - return method; - } - - /** - * Sets the value of the method property. - * - * @param value - * allowed object is - * {@link FailoverMonitorMethod } - * - */ - public void setMethod(FailoverMonitorMethod value) { - this.method = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the transmittedData property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTransmittedData() { - return transmittedData; - } - - /** - * Sets the value of the transmittedData property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTransmittedData(String value) { - this.transmittedData = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolMonitorUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolMonitorUpdate.java deleted file mode 100644 index adbfe224a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolMonitorUpdate.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for MonitoredRDPoolMonitorUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolMonitorUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="method" type="{http://schema.ultraservice.neustar.com/v01/}failoverMonitorMethod" minOccurs="0"/>
- *         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="transmittedData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="searchString" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolMonitorUpdate", propOrder = { - "method", - "url", - "transmittedData", - "searchString" -}) -public class MonitoredRDPoolMonitorUpdate { - - protected FailoverMonitorMethod method; - protected String url; - protected String transmittedData; - protected String searchString; - - /** - * Gets the value of the method property. - * - * @return - * possible object is - * {@link FailoverMonitorMethod } - * - */ - public FailoverMonitorMethod getMethod() { - return method; - } - - /** - * Sets the value of the method property. - * - * @param value - * allowed object is - * {@link FailoverMonitorMethod } - * - */ - public void setMethod(FailoverMonitorMethod value) { - this.method = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the transmittedData property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTransmittedData() { - return transmittedData; - } - - /** - * Sets the value of the transmittedData property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTransmittedData(String value) { - this.transmittedData = value; - } - - /** - * Gets the value of the searchString property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSearchString() { - return searchString; - } - - /** - * Sets the value of the searchString property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSearchString(String value) { - this.searchString = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecord.java deleted file mode 100644 index 3189f3169..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecord.java +++ /dev/null @@ -1,109 +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; - - -/** - *

Java class for MonitoredRDPoolRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="recordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="active" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolRecord", propOrder = { - "recordValue", - "description" -}) -public class MonitoredRDPoolRecord { - - @XmlElement(required = true) - protected String recordValue; - protected String description; - @XmlAttribute(name = "active", required = true) - protected boolean active; - - /** - * Gets the value of the recordValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordValue() { - return recordValue; - } - - /** - * Sets the value of the recordValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordValue(String value) { - this.recordValue = 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 active property. - * - */ - public boolean isActive() { - return active; - } - - /** - * Sets the value of the active property. - * - */ - public void setActive(boolean value) { - this.active = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecordAdd.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecordAdd.java deleted file mode 100644 index 1f98a52c5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecordAdd.java +++ /dev/null @@ -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; - - -/** - *

Java class for MonitoredRDPoolRecordAdd complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolRecordAdd">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="recordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolRecordAdd", propOrder = { - "recordValue", - "description" -}) -public class MonitoredRDPoolRecordAdd { - - @XmlElement(required = true) - protected String recordValue; - protected String description; - - /** - * Gets the value of the recordValue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordValue() { - return recordValue; - } - - /** - * Sets the value of the recordValue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordValue(String value) { - this.recordValue = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecords.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecords.java deleted file mode 100644 index bc65864d3..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecords.java +++ /dev/null @@ -1,97 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MonitoredRDPoolRecords complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolRecords">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="liveRecord" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="responseMethod" use="required" type="{http://schema.ultraservice.neustar.com/v01/}ResponseMethod" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolRecords", propOrder = { - "liveRecord" -}) -public class MonitoredRDPoolRecords { - - @XmlElement(required = true) - protected List liveRecord; - @XmlAttribute(name = "responseMethod", required = true) - protected ResponseMethod responseMethod; - - /** - * Gets the value of the liveRecord property. - * - *

- * 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 set method for the liveRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLiveRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MonitoredRDPoolRecord } - * - * - */ - public List getLiveRecord() { - if (liveRecord == null) { - liveRecord = new ArrayList(); - } - return this.liveRecord; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecordsAdd.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecordsAdd.java deleted file mode 100644 index 1d8685a9d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolRecordsAdd.java +++ /dev/null @@ -1,97 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MonitoredRDPoolRecordsAdd complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolRecordsAdd">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="liveRecord" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecordAdd" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="responseMethod" use="required" type="{http://schema.ultraservice.neustar.com/v01/}ResponseMethod" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolRecordsAdd", propOrder = { - "liveRecord" -}) -public class MonitoredRDPoolRecordsAdd { - - @XmlElement(required = true) - protected List liveRecord; - @XmlAttribute(name = "responseMethod", required = true) - protected ResponseMethod responseMethod; - - /** - * Gets the value of the liveRecord property. - * - *

- * 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 set method for the liveRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getLiveRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MonitoredRDPoolRecordAdd } - * - * - */ - public List getLiveRecord() { - if (liveRecord == null) { - liveRecord = new ArrayList(); - } - return this.liveRecord; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolUpdate.java deleted file mode 100644 index 6a7ad61f1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPoolUpdate.java +++ /dev/null @@ -1,227 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for MonitoredRDPoolUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="MonitoredRDPoolUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="monitoredRDPoolKey" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolKey"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="poolRecords" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecords" minOccurs="0"/>
- *         <element name="allFailRecord" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolAllFailRecordUpdate" minOccurs="0"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolMonitorUpdate" minOccurs="0"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "MonitoredRDPoolUpdate", propOrder = { - "monitoredRDPoolKey", - "description", - "poolRecords", - "allFailRecord", - "ttl", - "monitor", - "regionThreshold" -}) -public class MonitoredRDPoolUpdate { - - @XmlElement(required = true) - protected MonitoredRDPoolKey monitoredRDPoolKey; - protected String description; - protected MonitoredRDPoolRecords poolRecords; - protected MonitoredRDPoolAllFailRecordUpdate allFailRecord; - @XmlElementRef(name = "ttl", namespace = "http://schema.ultraservice.neustar.com/v01/", type = JAXBElement.class) - protected JAXBElement ttl; - protected MonitoredRDPoolMonitorUpdate monitor; - protected SimpleFailoverPoolRegionThreshold regionThreshold; - - /** - * Gets the value of the monitoredRDPoolKey property. - * - * @return - * possible object is - * {@link MonitoredRDPoolKey } - * - */ - public MonitoredRDPoolKey getMonitoredRDPoolKey() { - return monitoredRDPoolKey; - } - - /** - * Sets the value of the monitoredRDPoolKey property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolKey } - * - */ - public void setMonitoredRDPoolKey(MonitoredRDPoolKey value) { - this.monitoredRDPoolKey = 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 poolRecords property. - * - * @return - * possible object is - * {@link MonitoredRDPoolRecords } - * - */ - public MonitoredRDPoolRecords getPoolRecords() { - return poolRecords; - } - - /** - * Sets the value of the poolRecords property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolRecords } - * - */ - public void setPoolRecords(MonitoredRDPoolRecords value) { - this.poolRecords = value; - } - - /** - * Gets the value of the allFailRecord property. - * - * @return - * possible object is - * {@link MonitoredRDPoolAllFailRecordUpdate } - * - */ - public MonitoredRDPoolAllFailRecordUpdate getAllFailRecord() { - return allFailRecord; - } - - /** - * Sets the value of the allFailRecord property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolAllFailRecordUpdate } - * - */ - public void setAllFailRecord(MonitoredRDPoolAllFailRecordUpdate value) { - this.allFailRecord = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link JAXBElement }{@code <}{@link Long }{@code >} - * - */ - public JAXBElement getTtl() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link JAXBElement }{@code <}{@link Long }{@code >} - * - */ - public void setTtl(JAXBElement value) { - this.ttl = value; - } - - /** - * Gets the value of the monitor property. - * - * @return - * possible object is - * {@link MonitoredRDPoolMonitorUpdate } - * - */ - public MonitoredRDPoolMonitorUpdate getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolMonitorUpdate } - * - */ - public void setMonitor(MonitoredRDPoolMonitorUpdate value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPools.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPools.java deleted file mode 100644 index da4588883..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/MonitoredRDPools.java +++ /dev/null @@ -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; - - -/** - *

Java class for monitoredRDPools complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="monitoredRDPools">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="poolDefinitions" type="{http://schema.ultraservice.neustar.com/v01/}PoolDefinitions"/>
- *         <element name="recordCount" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="startIndex" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="count" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "monitoredRDPools", propOrder = { - "poolDefinitions", - "recordCount", - "startIndex", - "count" -}) -public class MonitoredRDPools { - - @XmlElement(required = true) - protected PoolDefinitions poolDefinitions; - protected int recordCount; - protected int startIndex; - protected int count; - - /** - * Gets the value of the poolDefinitions property. - * - * @return - * possible object is - * {@link PoolDefinitions } - * - */ - public PoolDefinitions getPoolDefinitions() { - return poolDefinitions; - } - - /** - * Sets the value of the poolDefinitions property. - * - * @param value - * allowed object is - * {@link PoolDefinitions } - * - */ - public void setPoolDefinitions(PoolDefinitions value) { - this.poolDefinitions = value; - } - - /** - * 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; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerData.java deleted file mode 100644 index 695c212e5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerData.java +++ /dev/null @@ -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; - - -/** - *

Java class for NameServerData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NameServerData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="actualNameServer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recomendedNameServer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NameServerData") -public class NameServerData { - - @XmlAttribute(name = "actualNameServer", required = true) - protected String actualNameServer; - @XmlAttribute(name = "recomendedNameServer", required = true) - protected String recomendedNameServer; - - /** - * Gets the value of the actualNameServer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActualNameServer() { - return actualNameServer; - } - - /** - * Sets the value of the actualNameServer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActualNameServer(String value) { - this.actualNameServer = value; - } - - /** - * Gets the value of the recomendedNameServer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecomendedNameServer() { - return recomendedNameServer; - } - - /** - * Sets the value of the recomendedNameServer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecomendedNameServer(String value) { - this.recomendedNameServer = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerIPs.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerIPs.java deleted file mode 100644 index 2bf1cb081..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerIPs.java +++ /dev/null @@ -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; - - -/** - *

Java class for NameServerIPs complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NameServerIPs">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="NameServerIP1" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="NameServerIP2" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="NameServerIP3" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TsigEnabled" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NameServerIPs") -public class NameServerIPs { - - @XmlAttribute(name = "NameServerIP1", required = true) - protected String nameServerIP1; - @XmlAttribute(name = "NameServerIP2") - protected String nameServerIP2; - @XmlAttribute(name = "NameServerIP3") - protected String nameServerIP3; - @XmlAttribute(name = "TsigEnabled") - protected String tsigEnabled; - - /** - * Gets the value of the nameServerIP1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameServerIP1() { - return nameServerIP1; - } - - /** - * Sets the value of the nameServerIP1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameServerIP1(String value) { - this.nameServerIP1 = value; - } - - /** - * Gets the value of the nameServerIP2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameServerIP2() { - return nameServerIP2; - } - - /** - * Sets the value of the nameServerIP2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameServerIP2(String value) { - this.nameServerIP2 = value; - } - - /** - * Gets the value of the nameServerIP3 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNameServerIP3() { - return nameServerIP3; - } - - /** - * Sets the value of the nameServerIP3 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNameServerIP3(String value) { - this.nameServerIP3 = value; - } - - /** - * Gets the value of the tsigEnabled property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTsigEnabled() { - return tsigEnabled; - } - - /** - * Sets the value of the tsigEnabled property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTsigEnabled(String value) { - this.tsigEnabled = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerList.java deleted file mode 100644 index 21ff45094..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerList.java +++ /dev/null @@ -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; - - -/** - *

Java class for NameServerList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NameServerList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NameServerData" type="{http://schema.ultraservice.neustar.com/v01/}NameServerData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NameServerList", propOrder = { - "nameServerData" -}) -public class NameServerList { - - @XmlElement(name = "NameServerData", required = true) - protected List nameServerData; - - /** - * Gets the value of the nameServerData property. - * - *

- * 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 set method for the nameServerData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNameServerData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NameServerData } - * - * - */ - public List getNameServerData() { - if (nameServerData == null) { - nameServerData = new ArrayList(); - } - return this.nameServerData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerRecord.java deleted file mode 100644 index 25e68e62d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for NameServerRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NameServerRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ipv4Address" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ipv6Address" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NameServerRecord") -public class NameServerRecord { - - @XmlAttribute(name = "name", required = true) - protected String name; - @XmlAttribute(name = "ipv4Address", required = true) - protected String ipv4Address; - @XmlAttribute(name = "ipv6Address") - protected String ipv6Address; - - /** - * 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 ipv4Address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIpv4Address() { - return ipv4Address; - } - - /** - * Sets the value of the ipv4Address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIpv4Address(String value) { - this.ipv4Address = value; - } - - /** - * Gets the value of the ipv6Address property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getIpv6Address() { - return ipv6Address; - } - - /** - * Sets the value of the ipv6Address property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setIpv6Address(String value) { - this.ipv6Address = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerRecordSet.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerRecordSet.java deleted file mode 100644 index cf11c7e41..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServerRecordSet.java +++ /dev/null @@ -1,98 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; -import com.neustar.ultraservice.schema.AccountSegmentMapStatusType; - - -/** - *

Java class for NameServerRecordSet complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NameServerRecordSet">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NameServerRecord" type="{http://schema.ultraservice.neustar.com/v01/}NameServerRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="type" use="required" type="{http://schema.ultraservice.neustar.com/}AccountSegmentMapStatusType" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NameServerRecordSet", propOrder = { - "nameServerRecord" -}) -public class NameServerRecordSet { - - @XmlElement(name = "NameServerRecord", required = true) - protected List nameServerRecord; - @XmlAttribute(name = "type", required = true) - protected AccountSegmentMapStatusType type; - - /** - * Gets the value of the nameServerRecord property. - * - *

- * 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 set method for the nameServerRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNameServerRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NameServerRecord } - * - * - */ - public List getNameServerRecord() { - if (nameServerRecord == null) { - nameServerRecord = new ArrayList(); - } - return this.nameServerRecord; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link AccountSegmentMapStatusType } - * - */ - public AccountSegmentMapStatusType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link AccountSegmentMapStatusType } - * - */ - public void setType(AccountSegmentMapStatusType value) { - this.type = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServers.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServers.java deleted file mode 100644 index 417d2beab..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NameServers.java +++ /dev/null @@ -1,81 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import java.util.ArrayList; -import java.util.List; -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for NameServers complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NameServers">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NameServerRecordSet" type="{http://schema.ultraservice.neustar.com/v01/}NameServerRecordSet" maxOccurs="unbounded"/>
- *         <element name="NameServerRecordSet" type="{http://schema.ultraservice.neustar.com/v01/}NameServerRecordSet" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NameServers", propOrder = { - "content" -}) -public class NameServers { - - @XmlElementRef(name = "NameServerRecordSet", namespace = "http://schema.ultraservice.neustar.com/v01/", type = JAXBElement.class) - protected List> content; - - /** - * Gets the rest of the content model. - * - *

- * You are getting this "catch-all" property because of the following reason: - * The field name "NameServerRecordSet" is used by two different parts of a schema. See: - * line 2394 of http://ultra-api.ultradns.com/UltraDNS_WS/v01?wsdl - * line 2393 of http://ultra-api.ultradns.com/UltraDNS_WS/v01?wsdl - *

- * To get rid of this property, apply a property customization to one - * of both of the following declarations to change their names: - * Gets the value of the content property. - * - *

- * 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 set method for the content property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getContent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link JAXBElement }{@code <}{@link NameServerRecordSet }{@code >} - * - * - */ - public List> getContent() { - if (content == null) { - content = new ArrayList>(); - } - return this.content; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationData.java deleted file mode 100644 index 56f7c80b9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationData.java +++ /dev/null @@ -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; - - -/** - *

Java class for NotificationData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NotificationData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="email" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="poolRecordId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="poolNotifyId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="probeEvents" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recordEvents" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="scheduleEvents" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NotificationData") -public class NotificationData { - - @XmlAttribute(name = "email", required = true) - protected String email; - @XmlAttribute(name = "poolRecordId", required = true) - protected String poolRecordId; - @XmlAttribute(name = "poolNotifyId", required = true) - protected String poolNotifyId; - @XmlAttribute(name = "probeEvents", required = true) - protected String probeEvents; - @XmlAttribute(name = "recordEvents", required = true) - protected String recordEvents; - @XmlAttribute(name = "scheduleEvents", required = true) - protected String scheduleEvents; - - /** - * 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 poolRecordId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolRecordId() { - return poolRecordId; - } - - /** - * Sets the value of the poolRecordId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolRecordId(String value) { - this.poolRecordId = value; - } - - /** - * Gets the value of the poolNotifyId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolNotifyId() { - return poolNotifyId; - } - - /** - * Sets the value of the poolNotifyId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolNotifyId(String value) { - this.poolNotifyId = value; - } - - /** - * Gets the value of the probeEvents property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeEvents() { - return probeEvents; - } - - /** - * Sets the value of the probeEvents property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeEvents(String value) { - this.probeEvents = value; - } - - /** - * Gets the value of the recordEvents property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordEvents() { - return recordEvents; - } - - /** - * Sets the value of the recordEvents property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordEvents(String value) { - this.recordEvents = value; - } - - /** - * Gets the value of the scheduleEvents property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScheduleEvents() { - return scheduleEvents; - } - - /** - * Sets the value of the scheduleEvents property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScheduleEvents(String value) { - this.scheduleEvents = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationInfo.java deleted file mode 100644 index 6a49efd78..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationInfo.java +++ /dev/null @@ -1,106 +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; - - -/** - *

Java class for NotificationInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NotificationInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="contactName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="notificationType" type="{http://schema.ultraservice.neustar.com/v01/}notificationType" minOccurs="0"/>
- *         <element name="served" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NotificationInfo", propOrder = { - "contactName", - "notificationType", - "served" -}) -public class NotificationInfo { - - protected String contactName; - protected NotificationType notificationType; - protected boolean served; - - /** - * Gets the value of the contactName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getContactName() { - return contactName; - } - - /** - * Sets the value of the contactName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setContactName(String value) { - this.contactName = value; - } - - /** - * Gets the value of the notificationType property. - * - * @return - * possible object is - * {@link NotificationType } - * - */ - public NotificationType getNotificationType() { - return notificationType; - } - - /** - * Sets the value of the notificationType property. - * - * @param value - * allowed object is - * {@link NotificationType } - * - */ - public void setNotificationType(NotificationType value) { - this.notificationType = value; - } - - /** - * Gets the value of the served property. - * - */ - public boolean isServed() { - return served; - } - - /** - * Sets the value of the served property. - * - */ - public void setServed(boolean value) { - this.served = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationList.java deleted file mode 100644 index 3844536f5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationList.java +++ /dev/null @@ -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; - - -/** - *

Java class for NotificationList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NotificationList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NotificationData" type="{http://schema.ultraservice.neustar.com/v01/}NotificationData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NotificationList", propOrder = { - "notificationData" -}) -public class NotificationList { - - @XmlElement(name = "NotificationData", required = true) - protected List notificationData; - - /** - * Gets the value of the notificationData property. - * - *

- * 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 set method for the notificationData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNotificationData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NotificationData } - * - * - */ - public List getNotificationData() { - if (notificationData == null) { - notificationData = new ArrayList(); - } - return this.notificationData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationType.java deleted file mode 100644 index 80a5d5039..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotificationType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for notificationType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="notificationType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="EMAIL"/>
- *     <enumeration value="SMS"/>
- *     <enumeration value="SNMP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "notificationType") -@XmlEnum -public enum NotificationType { - - EMAIL, - SMS, - SNMP; - - public String value() { - return name(); - } - - public static NotificationType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Notifications.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Notifications.java deleted file mode 100644 index f26fc5ce1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Notifications.java +++ /dev/null @@ -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; - - -/** - *

Java class for Notifications complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Notifications">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="notification" type="{http://schema.ultraservice.neustar.com/v01/}NotificationInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Notifications", propOrder = { - "notification" -}) -public class Notifications { - - protected List notification; - - /** - * Gets the value of the notification property. - * - *

- * 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 set method for the notification property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNotification().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NotificationInfo } - * - * - */ - public List getNotification() { - if (notification == null) { - notification = new ArrayList(); - } - return this.notification; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotifyRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotifyRecord.java deleted file mode 100644 index 45fbf1020..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotifyRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for NotifyRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NotifyRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="poolRecordId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="probeEvents" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recordEvents" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="scheduledEvents" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NotifyRecord") -public class NotifyRecord { - - @XmlAttribute(name = "poolRecordId", required = true) - protected String poolRecordId; - @XmlAttribute(name = "probeEvents", required = true) - protected String probeEvents; - @XmlAttribute(name = "recordEvents", required = true) - protected String recordEvents; - @XmlAttribute(name = "scheduledEvents", required = true) - protected String scheduledEvents; - - /** - * Gets the value of the poolRecordId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolRecordId() { - return poolRecordId; - } - - /** - * Sets the value of the poolRecordId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolRecordId(String value) { - this.poolRecordId = value; - } - - /** - * Gets the value of the probeEvents property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeEvents() { - return probeEvents; - } - - /** - * Sets the value of the probeEvents property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeEvents(String value) { - this.probeEvents = value; - } - - /** - * Gets the value of the recordEvents property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordEvents() { - return recordEvents; - } - - /** - * Sets the value of the recordEvents property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordEvents(String value) { - this.recordEvents = value; - } - - /** - * Gets the value of the scheduledEvents property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getScheduledEvents() { - return scheduledEvents; - } - - /** - * Sets the value of the scheduledEvents property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setScheduledEvents(String value) { - this.scheduledEvents = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotifyRecordList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotifyRecordList.java deleted file mode 100644 index 02746cc67..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/NotifyRecordList.java +++ /dev/null @@ -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; - - -/** - *

Java class for NotifyRecordList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="NotifyRecordList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="NotifyRecord" type="{http://schema.ultraservice.neustar.com/v01/}NotifyRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "NotifyRecordList", propOrder = { - "notifyRecord" -}) -public class NotifyRecordList { - - @XmlElement(name = "NotifyRecord", required = true) - protected List notifyRecord; - - /** - * Gets the value of the notifyRecord property. - * - *

- * 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 set method for the notifyRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getNotifyRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link NotifyRecord } - * - * - */ - public List getNotifyRecord() { - if (notifyRecord == null) { - notifyRecord = new ArrayList(); - } - return this.notifyRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ObjectFactory.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ObjectFactory.java deleted file mode 100644 index c6963c2c0..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ObjectFactory.java +++ /dev/null @@ -1,2304 +0,0 @@ - -package com.neustar.ultraservice.schema.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.ultraservice.schema.v01 package. - *

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 _ProbeInfo2Ttl_QNAME = new QName("http://schema.ultraservice.neustar.com/v01/", "ttl"); - private final static QName _NameServersNameServerRecordSet_QNAME = new QName("http://schema.ultraservice.neustar.com/v01/", "NameServerRecordSet"); - - /** - * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.neustar.ultraservice.schema.v01 - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link ProbeAlertsList } - * - */ - public ProbeAlertsList createProbeAlertsList() { - return new ProbeAlertsList(); - } - - /** - * Create an instance of {@link DirectionalPoolList } - * - */ - public DirectionalPoolList createDirectionalPoolList() { - return new DirectionalPoolList(); - } - - /** - * Create an instance of {@link RegionAndAgent } - * - */ - public RegionAndAgent createRegionAndAgent() { - return new RegionAndAgent(); - } - - /** - * Create an instance of {@link PoolRecordsList } - * - */ - public PoolRecordsList createPoolRecordsList() { - return new PoolRecordsList(); - } - - /** - * Create an instance of {@link AddDirectionalRecordData } - * - */ - public AddDirectionalRecordData createAddDirectionalRecordData() { - return new AddDirectionalRecordData(); - } - - /** - * Create an instance of {@link MonitoredRDPools } - * - */ - public MonitoredRDPools createMonitoredRDPools() { - return new MonitoredRDPools(); - } - - /** - * Create an instance of {@link AddressBookEntryKeys } - * - */ - public AddressBookEntryKeys createAddressBookEntryKeys() { - return new AddressBookEntryKeys(); - } - - /** - * Create an instance of {@link PoolRecord } - * - */ - public PoolRecord createPoolRecord() { - return new PoolRecord(); - } - - /** - * Create an instance of {@link InfoValues } - * - */ - public InfoValues createInfoValues() { - return new InfoValues(); - } - - /** - * Create an instance of {@link PrioritizedRecordsList } - * - */ - public PrioritizedRecordsList createPrioritizedRecordsList() { - return new PrioritizedRecordsList(); - } - - /** - * Create an instance of {@link PoolRecordListParams } - * - */ - public PoolRecordListParams createPoolRecordListParams() { - return new PoolRecordListParams(); - } - - /** - * Create an instance of {@link UpdateRoundRobinRecord } - * - */ - public UpdateRoundRobinRecord createUpdateRoundRobinRecord() { - return new UpdateRoundRobinRecord(); - } - - /** - * Create an instance of {@link HealthCheckList } - * - */ - public HealthCheckList createHealthCheckList() { - return new HealthCheckList(); - } - - /** - * Create an instance of {@link MailFwdRecordsList } - * - */ - public MailFwdRecordsList createMailFwdRecordsList() { - return new MailFwdRecordsList(); - } - - /** - * Create an instance of {@link ARPoolRuleKey } - * - */ - public ARPoolRuleKey createARPoolRuleKey() { - return new ARPoolRuleKey(); - } - - /** - * Create an instance of {@link ARPoolAlertsList } - * - */ - public ARPoolAlertsList createARPoolAlertsList() { - return new ARPoolAlertsList(); - } - - /** - * Create an instance of {@link PoolProbeId } - * - */ - public PoolProbeId createPoolProbeId() { - return new PoolProbeId(); - } - - /** - * Create an instance of {@link AddressBookEntryCreateKey } - * - */ - public AddressBookEntryCreateKey createAddressBookEntryCreateKey() { - return new AddressBookEntryCreateKey(); - } - - /** - * Create an instance of {@link RecentActivityList } - * - */ - public RecentActivityList createRecentActivityList() { - return new RecentActivityList(); - } - - /** - * Create an instance of {@link AlertPoolStatus } - * - */ - public AlertPoolStatus createAlertPoolStatus() { - return new AlertPoolStatus(); - } - - /** - * Create an instance of {@link RegionForNewGroups } - * - */ - public RegionForNewGroups createRegionForNewGroups() { - return new RegionForNewGroups(); - } - - /** - * Create an instance of {@link RegionForNewGroupsList } - * - */ - public RegionForNewGroupsList createRegionForNewGroupsList() { - return new RegionForNewGroupsList(); - } - - /** - * Create an instance of {@link UnsuspendZone } - * - */ - public UnsuspendZone createUnsuspendZone() { - return new UnsuspendZone(); - } - - /** - * Create an instance of {@link PoolRecordId } - * - */ - public PoolRecordId createPoolRecordId() { - return new PoolRecordId(); - } - - /** - * Create an instance of {@link AddDirectionalPoolData } - * - */ - public AddDirectionalPoolData createAddDirectionalPoolData() { - return new AddDirectionalPoolData(); - } - - /** - * Create an instance of {@link Rules } - * - */ - public Rules createRules() { - return new Rules(); - } - - /** - * Create an instance of {@link AlertPoolDetails } - * - */ - public AlertPoolDetails createAlertPoolDetails() { - return new AlertPoolDetails(); - } - - /** - * Create an instance of {@link DefaultReportPrefPreference } - * - */ - public DefaultReportPrefPreference createDefaultReportPrefPreference() { - return new DefaultReportPrefPreference(); - } - - /** - * Create an instance of {@link TCPCriteria } - * - */ - public TCPCriteria createTCPCriteria() { - return new TCPCriteria(); - } - - /** - * Create an instance of {@link PoolData } - * - */ - public PoolData createPoolData() { - return new PoolData(); - } - - /** - * Create an instance of {@link ExternalValues } - * - */ - public ExternalValues createExternalValues() { - return new ExternalValues(); - } - - /** - * Create an instance of {@link SourceIpGroupDefinitionList } - * - */ - public SourceIpGroupDefinitionList createSourceIpGroupDefinitionList() { - return new SourceIpGroupDefinitionList(); - } - - /** - * Create an instance of {@link CountryInfo } - * - */ - public CountryInfo createCountryInfo() { - return new CountryInfo(); - } - - /** - * Create an instance of {@link UserDetailsPermissionData } - * - */ - public UserDetailsPermissionData createUserDetailsPermissionData() { - return new UserDetailsPermissionData(); - } - - /** - * Create an instance of {@link UnsuspendZoneRequest } - * - */ - public UnsuspendZoneRequest createUnsuspendZoneRequest() { - return new UnsuspendZoneRequest(); - } - - /** - * Create an instance of {@link ProbeRegionList } - * - */ - public ProbeRegionList createProbeRegionList() { - return new ProbeRegionList(); - } - - /** - * Create an instance of {@link StatesInfo } - * - */ - public StatesInfo createStatesInfo() { - return new StatesInfo(); - } - - /** - * Create an instance of {@link ScheduledEvent } - * - */ - public ScheduledEvent createScheduledEvent() { - return new ScheduledEvent(); - } - - /** - * Create an instance of {@link SMTPAvailabilityProbeData } - * - */ - public SMTPAvailabilityProbeData createSMTPAvailabilityProbeData() { - return new SMTPAvailabilityProbeData(); - } - - /** - * Create an instance of {@link MonitoredRDPoolRecordsAdd } - * - */ - public MonitoredRDPoolRecordsAdd createMonitoredRDPoolRecordsAdd() { - return new MonitoredRDPoolRecordsAdd(); - } - - /** - * Create an instance of {@link DirectionalDNSRecordDetailList } - * - */ - public DirectionalDNSRecordDetailList createDirectionalDNSRecordDetailList() { - return new DirectionalDNSRecordDetailList(); - } - - /** - * Create an instance of {@link FTPCriteria } - * - */ - public FTPCriteria createFTPCriteria() { - return new FTPCriteria(); - } - - /** - * Create an instance of {@link UserDefaultPreferences } - * - */ - public UserDefaultPreferences createUserDefaultPreferences() { - return new UserDefaultPreferences(); - } - - /** - * Create an instance of {@link AccountPreferencesList } - * - */ - public AccountPreferencesList createAccountPreferencesList() { - return new AccountPreferencesList(); - } - - /** - * Create an instance of {@link DsRecordList } - * - */ - public DsRecordList createDsRecordList() { - return new DsRecordList(); - } - - /** - * Create an instance of {@link HTTPProbeData } - * - */ - public HTTPProbeData createHTTPProbeData() { - return new HTTPProbeData(); - } - - /** - * Create an instance of {@link TaskId } - * - */ - public TaskId createTaskId() { - return new TaskId(); - } - - /** - * Create an instance of {@link SourceIpGroupDefinitionData } - * - */ - public SourceIpGroupDefinitionData createSourceIpGroupDefinitionData() { - return new SourceIpGroupDefinitionData(); - } - - /** - * Create an instance of {@link AddressBookEntryListKey } - * - */ - public AddressBookEntryListKey createAddressBookEntryListKey() { - return new AddressBookEntryListKey(); - } - - /** - * Create an instance of {@link NameServers } - * - */ - public NameServers createNameServers() { - return new NameServers(); - } - - /** - * Create an instance of {@link UpdateGeolocationGroupDetails } - * - */ - public UpdateGeolocationGroupDetails createUpdateGeolocationGroupDetails() { - return new UpdateGeolocationGroupDetails(); - } - - /** - * Create an instance of {@link MonitoredRDPoolConversionInfo } - * - */ - public MonitoredRDPoolConversionInfo createMonitoredRDPoolConversionInfo() { - return new MonitoredRDPoolConversionInfo(); - } - - /** - * Create an instance of {@link AgentsRunningProbeList } - * - */ - public AgentsRunningProbeList createAgentsRunningProbeList() { - return new AgentsRunningProbeList(); - } - - /** - * Create an instance of {@link GeolocationGroupDetails } - * - */ - public GeolocationGroupDetails createGeolocationGroupDetails() { - return new GeolocationGroupDetails(); - } - - /** - * Create an instance of {@link FTPTransaction } - * - */ - public FTPTransaction createFTPTransaction() { - return new FTPTransaction(); - } - - /** - * Create an instance of {@link ZoneInfoData } - * - */ - public ZoneInfoData createZoneInfoData() { - return new ZoneInfoData(); - } - - /** - * Create an instance of {@link PoolToAcctGroupConversionDetails } - * - */ - public PoolToAcctGroupConversionDetails createPoolToAcctGroupConversionDetails() { - return new PoolToAcctGroupConversionDetails(); - } - - /** - * Create an instance of {@link PoolDefinitions } - * - */ - public PoolDefinitions createPoolDefinitions() { - return new PoolDefinitions(); - } - - /** - * Create an instance of {@link AllStatesList } - * - */ - public AllStatesList createAllStatesList() { - return new AllStatesList(); - } - - /** - * Create an instance of {@link WebFwdRecordsList } - * - */ - public WebFwdRecordsList createWebFwdRecordsList() { - return new WebFwdRecordsList(); - } - - /** - * Create an instance of {@link HeaderRule } - * - */ - public HeaderRule createHeaderRule() { - return new HeaderRule(); - } - - /** - * Create an instance of {@link CNAMERecord } - * - */ - public CNAMERecord createCNAMERecord() { - return new CNAMERecord(); - } - - /** - * Create an instance of {@link SMTPCriteria } - * - */ - public SMTPCriteria createSMTPCriteria() { - return new SMTPCriteria(); - } - - /** - * Create an instance of {@link ProbeDefinitionId } - * - */ - public ProbeDefinitionId createProbeDefinitionId() { - return new ProbeDefinitionId(); - } - - /** - * Create an instance of {@link FailoverMonitorUpdate } - * - */ - public FailoverMonitorUpdate createFailoverMonitorUpdate() { - return new FailoverMonitorUpdate(); - } - - /** - * Create an instance of {@link ProbeData } - * - */ - public ProbeData createProbeData() { - return new ProbeData(); - } - - /** - * Create an instance of {@link PrioritizedRecord } - * - */ - public PrioritizedRecord createPrioritizedRecord() { - return new PrioritizedRecord(); - } - - /** - * Create an instance of {@link PROXYProbeData } - * - */ - public PROXYProbeData createPROXYProbeData() { - return new PROXYProbeData(); - } - - /** - * Create an instance of {@link InactiveTimeOutPreference } - * - */ - public InactiveTimeOutPreference createInactiveTimeOutPreference() { - return new InactiveTimeOutPreference(); - } - - /** - * Create an instance of {@link DnssecKeyRecordList } - * - */ - public DnssecKeyRecordList createDnssecKeyRecordList() { - return new DnssecKeyRecordList(); - } - - /** - * Create an instance of {@link SecurityQuestions } - * - */ - public SecurityQuestions createSecurityQuestions() { - return new SecurityQuestions(); - } - - /** - * Create an instance of {@link AddressBookEntryGet } - * - */ - public AddressBookEntryGet createAddressBookEntryGet() { - return new AddressBookEntryGet(); - } - - /** - * Create an instance of {@link UpdateSourceIPGroupDetails } - * - */ - public UpdateSourceIPGroupDetails createUpdateSourceIPGroupDetails() { - return new UpdateSourceIPGroupDetails(); - } - - /** - * Create an instance of {@link SimpleFailoverPoolList } - * - */ - public SimpleFailoverPoolList createSimpleFailoverPoolList() { - return new SimpleFailoverPoolList(); - } - - /** - * Create an instance of {@link MonitoredRDPoolRecordAdd } - * - */ - public MonitoredRDPoolRecordAdd createMonitoredRDPoolRecordAdd() { - return new MonitoredRDPoolRecordAdd(); - } - - /** - * Create an instance of {@link PoolRecordProbeId } - * - */ - public PoolRecordProbeId createPoolRecordProbeId() { - return new PoolRecordProbeId(); - } - - /** - * Create an instance of {@link PoolRecordUpdate } - * - */ - public PoolRecordUpdate createPoolRecordUpdate() { - return new PoolRecordUpdate(); - } - - /** - * Create an instance of {@link ZoneInfoList } - * - */ - public ZoneInfoList createZoneInfoList() { - return new ZoneInfoList(); - } - - /** - * Create an instance of {@link CustomHTTPHeaderDataList } - * - */ - public CustomHTTPHeaderDataList createCustomHTTPHeaderDataList() { - return new CustomHTTPHeaderDataList(); - } - - /** - * Create an instance of {@link SBAgentsData } - * - */ - public SBAgentsData createSBAgentsData() { - return new SBAgentsData(); - } - - /** - * Create an instance of {@link UpdateWebForwardPoolRecordData } - * - */ - public UpdateWebForwardPoolRecordData createUpdateWebForwardPoolRecordData() { - return new UpdateWebForwardPoolRecordData(); - } - - /** - * Create an instance of {@link PoolAlertDetails } - * - */ - public PoolAlertDetails createPoolAlertDetails() { - return new PoolAlertDetails(); - } - - /** - * Create an instance of {@link DomainAlertData } - * - */ - public DomainAlertData createDomainAlertData() { - return new DomainAlertData(); - } - - /** - * Create an instance of {@link GeneralNotificationStatusData } - * - */ - public GeneralNotificationStatusData createGeneralNotificationStatusData() { - return new GeneralNotificationStatusData(); - } - - /** - * Create an instance of {@link SimpleFailoverPool } - * - */ - public SimpleFailoverPool createSimpleFailoverPool() { - return new SimpleFailoverPool(); - } - - /** - * Create an instance of {@link RegionList } - * - */ - public RegionList createRegionList() { - return new RegionList(); - } - - /** - * Create an instance of {@link PingCriteria } - * - */ - public PingCriteria createPingCriteria() { - return new PingCriteria(); - } - - /** - * Create an instance of {@link HttpCriteria } - * - */ - public HttpCriteria createHttpCriteria() { - return new HttpCriteria(); - } - - /** - * Create an instance of {@link UpdateCustomHTTPHeaderData } - * - */ - public UpdateCustomHTTPHeaderData createUpdateCustomHTTPHeaderData() { - return new UpdateCustomHTTPHeaderData(); - } - - /** - * Create an instance of {@link Pool } - * - */ - public Pool createPool() { - return new Pool(); - } - - /** - * Create an instance of {@link ResourceRecordGUIDList } - * - */ - public ResourceRecordGUIDList createResourceRecordGUIDList() { - return new ResourceRecordGUIDList(); - } - - /** - * Create an instance of {@link ProbesList } - * - */ - public ProbesList createProbesList() { - return new ProbesList(); - } - - /** - * Create an instance of {@link ScheduledEventList } - * - */ - public ScheduledEventList createScheduledEventList() { - return new ScheduledEventList(); - } - - /** - * Create an instance of {@link UpdateDirectionalPoolData } - * - */ - public UpdateDirectionalPoolData createUpdateDirectionalPoolData() { - return new UpdateDirectionalPoolData(); - } - - /** - * Create an instance of {@link ARAlertRuleDetails } - * - */ - public ARAlertRuleDetails createARAlertRuleDetails() { - return new ARAlertRuleDetails(); - } - - /** - * Create an instance of {@link CustomHTTPHeaderData } - * - */ - public CustomHTTPHeaderData createCustomHTTPHeaderData() { - return new CustomHTTPHeaderData(); - } - - /** - * Create an instance of {@link MonitoredRDPoolUpdate } - * - */ - public MonitoredRDPoolUpdate createMonitoredRDPoolUpdate() { - return new MonitoredRDPoolUpdate(); - } - - /** - * Create an instance of {@link MonitoredRDPool } - * - */ - public MonitoredRDPool createMonitoredRDPool() { - return new MonitoredRDPool(); - } - - /** - * Create an instance of {@link PoolId } - * - */ - public PoolId createPoolId() { - return new PoolId(); - } - - /** - * Create an instance of {@link SimpleFailoverPoolAdd } - * - */ - public SimpleFailoverPoolAdd createSimpleFailoverPoolAdd() { - return new SimpleFailoverPoolAdd(); - } - - /** - * Create an instance of {@link ZoneTransferStatus } - * - */ - public ZoneTransferStatus createZoneTransferStatus() { - return new ZoneTransferStatus(); - } - - /** - * Create an instance of {@link TCPProbeData } - * - */ - public TCPProbeData createTCPProbeData() { - return new TCPProbeData(); - } - - /** - * Create an instance of {@link SuspendZone } - * - */ - public SuspendZone createSuspendZone() { - return new SuspendZone(); - } - - /** - * Create an instance of {@link TaskStatusList } - * - */ - public TaskStatusList createTaskStatusList() { - return new TaskStatusList(); - } - - /** - * Create an instance of {@link DirectionalDNSRecordDetail } - * - */ - public DirectionalDNSRecordDetail createDirectionalDNSRecordDetail() { - return new DirectionalDNSRecordDetail(); - } - - /** - * Create an instance of {@link DnsCriteria } - * - */ - public DnsCriteria createDnsCriteria() { - return new DnsCriteria(); - } - - /** - * Create an instance of {@link AccountPreferenceDetail } - * - */ - public AccountPreferenceDetail createAccountPreferenceDetail() { - return new AccountPreferenceDetail(); - } - - /** - * Create an instance of {@link DirectionalDNSRecordToUpdate } - * - */ - public DirectionalDNSRecordToUpdate createDirectionalDNSRecordToUpdate() { - return new DirectionalDNSRecordToUpdate(); - } - - /** - * Create an instance of {@link Probe } - * - */ - public Probe createProbe() { - return new Probe(); - } - - /** - * Create an instance of {@link PasswordVerificationQuestionList } - * - */ - public PasswordVerificationQuestionList createPasswordVerificationQuestionList() { - return new PasswordVerificationQuestionList(); - } - - /** - * Create an instance of {@link ARPoolRecords } - * - */ - public ARPoolRecords createARPoolRecords() { - return new ARPoolRecords(); - } - - /** - * Create an instance of {@link SMTP2Transaction } - * - */ - public SMTP2Transaction createSMTP2Transaction() { - return new SMTP2Transaction(); - } - - /** - * Create an instance of {@link AllUsersDetailsList } - * - */ - public AllUsersDetailsList createAllUsersDetailsList() { - return new AllUsersDetailsList(); - } - - /** - * Create an instance of {@link UserDetailsData } - * - */ - public UserDetailsData createUserDetailsData() { - return new UserDetailsData(); - } - - /** - * Create an instance of {@link NotificationData } - * - */ - public NotificationData createNotificationData() { - return new NotificationData(); - } - - /** - * Create an instance of {@link GlobalDirectionalGroupUpdateDetails } - * - */ - public GlobalDirectionalGroupUpdateDetails createGlobalDirectionalGroupUpdateDetails() { - return new GlobalDirectionalGroupUpdateDetails(); - } - - /** - * Create an instance of {@link ResourceRecordList } - * - */ - public ResourceRecordList createResourceRecordList() { - return new ResourceRecordList(); - } - - /** - * Create an instance of {@link PINGProbeData } - * - */ - public PINGProbeData createPINGProbeData() { - return new PINGProbeData(); - } - - /** - * Create an instance of {@link Region } - * - */ - public Region createRegion() { - return new Region(); - } - - /** - * Create an instance of {@link AliasedDomainInfo } - * - */ - public AliasedDomainInfo createAliasedDomainInfo() { - return new AliasedDomainInfo(); - } - - /** - * Create an instance of {@link NameServerRecord } - * - */ - public NameServerRecord createNameServerRecord() { - return new NameServerRecord(); - } - - /** - * Create an instance of {@link PoolDetails } - * - */ - public PoolDetails createPoolDetails() { - return new PoolDetails(); - } - - /** - * Create an instance of {@link DirectionalDNSGroupDetail } - * - */ - public DirectionalDNSGroupDetail createDirectionalDNSGroupDetail() { - return new DirectionalDNSGroupDetail(); - } - - /** - * Create an instance of {@link DefaultNumberOfrecordsPreference } - * - */ - public DefaultNumberOfrecordsPreference createDefaultNumberOfrecordsPreference() { - return new DefaultNumberOfrecordsPreference(); - } - - /** - * Create an instance of {@link NameServerList } - * - */ - public NameServerList createNameServerList() { - return new NameServerList(); - } - - /** - * Create an instance of {@link WebForwardPoolRecordData } - * - */ - public WebForwardPoolRecordData createWebForwardPoolRecordData() { - return new WebForwardPoolRecordData(); - } - - /** - * Create an instance of {@link ProbeDefinition } - * - */ - public ProbeDefinition createProbeDefinition() { - return new ProbeDefinition(); - } - - /** - * Create an instance of {@link PoolConfigurationList } - * - */ - public PoolConfigurationList createPoolConfigurationList() { - return new PoolConfigurationList(); - } - - /** - * Create an instance of {@link WebForwardRecord } - * - */ - public WebForwardRecord createWebForwardRecord() { - return new WebForwardRecord(); - } - - /** - * Create an instance of {@link AccountAddressInfo } - * - */ - public AccountAddressInfo createAccountAddressInfo() { - return new AccountAddressInfo(); - } - - /** - * Create an instance of {@link AllUsersDetailsData } - * - */ - public AllUsersDetailsData createAllUsersDetailsData() { - return new AllUsersDetailsData(); - } - - /** - * Create an instance of {@link ResourceRecord } - * - */ - public ResourceRecord createResourceRecord() { - return new ResourceRecord(); - } - - /** - * Create an instance of {@link ResourceRecordToUpdate } - * - */ - public ResourceRecordToUpdate createResourceRecordToUpdate() { - return new ResourceRecordToUpdate(); - } - - /** - * Create an instance of {@link AccountLevelNotificationsList } - * - */ - public AccountLevelNotificationsList createAccountLevelNotificationsList() { - return new AccountLevelNotificationsList(); - } - - /** - * Create an instance of {@link ProbeRegions } - * - */ - public ProbeRegions createProbeRegions() { - return new ProbeRegions(); - } - - /** - * Create an instance of {@link ARPoolProbeList } - * - */ - public ARPoolProbeList createARPoolProbeList() { - return new ARPoolProbeList(); - } - - /** - * Create an instance of {@link LBPoolData } - * - */ - public LBPoolData createLBPoolData() { - return new LBPoolData(); - } - - /** - * Create an instance of {@link AcctToPoolGroupConversionDetails } - * - */ - public AcctToPoolGroupConversionDetails createAcctToPoolGroupConversionDetails() { - return new AcctToPoolGroupConversionDetails(); - } - - /** - * Create an instance of {@link AlertAllFailDetails } - * - */ - public AlertAllFailDetails createAlertAllFailDetails() { - return new AlertAllFailDetails(); - } - - /** - * Create an instance of {@link DsRecord } - * - */ - public DsRecord createDsRecord() { - return new DsRecord(); - } - - /** - * Create an instance of {@link AccountLevelGroupsList } - * - */ - public AccountLevelGroupsList createAccountLevelGroupsList() { - return new AccountLevelGroupsList(); - } - - /** - * Create an instance of {@link FailoverMonitor } - * - */ - public FailoverMonitor createFailoverMonitor() { - return new FailoverMonitor(); - } - - /** - * Create an instance of {@link MonitoredRDPoolMonitor } - * - */ - public MonitoredRDPoolMonitor createMonitoredRDPoolMonitor() { - return new MonitoredRDPoolMonitor(); - } - - /** - * Create an instance of {@link PoolDetailsList } - * - */ - public PoolDetailsList createPoolDetailsList() { - return new PoolDetailsList(); - } - - /** - * Create an instance of {@link ARProbeInfo } - * - */ - public ARProbeInfo createARProbeInfo() { - return new ARProbeInfo(); - } - - /** - * Create an instance of {@link ProbeInfo } - * - */ - public ProbeInfo createProbeInfo() { - return new ProbeInfo(); - } - - /** - * Create an instance of {@link SecurityPreferences } - * - */ - public SecurityPreferences createSecurityPreferences() { - return new SecurityPreferences(); - } - - /** - * Create an instance of {@link ProbeRegion } - * - */ - public ProbeRegion createProbeRegion() { - return new ProbeRegion(); - } - - /** - * Create an instance of {@link DNSProbeMaster } - * - */ - public DNSProbeMaster createDNSProbeMaster() { - return new DNSProbeMaster(); - } - - /** - * Create an instance of {@link ProbeInfo2 } - * - */ - public ProbeInfo2 createProbeInfo2() { - return new ProbeInfo2(); - } - - /** - * Create an instance of {@link MonitoredRDPoolRecord } - * - */ - public MonitoredRDPoolRecord createMonitoredRDPoolRecord() { - return new MonitoredRDPoolRecord(); - } - - /** - * Create an instance of {@link SimpleFailoverPoolUpdate } - * - */ - public SimpleFailoverPoolUpdate createSimpleFailoverPoolUpdate() { - return new SimpleFailoverPoolUpdate(); - } - - /** - * Create an instance of {@link AddressBookEntry } - * - */ - public AddressBookEntry createAddressBookEntry() { - return new AddressBookEntry(); - } - - /** - * Create an instance of {@link RecentActivity } - * - */ - public RecentActivity createRecentActivity() { - return new RecentActivity(); - } - - /** - * Create an instance of {@link ResourceRecordTypeOrderInfoList } - * - */ - public ResourceRecordTypeOrderInfoList createResourceRecordTypeOrderInfoList() { - return new ResourceRecordTypeOrderInfoList(); - } - - /** - * Create an instance of {@link DashboardTypeOrderInfo } - * - */ - public DashboardTypeOrderInfo createDashboardTypeOrderInfo() { - return new DashboardTypeOrderInfo(); - } - - /** - * Create an instance of {@link NameServerData } - * - */ - public NameServerData createNameServerData() { - return new NameServerData(); - } - - /** - * Create an instance of {@link AutomaticPointerPreference } - * - */ - public AutomaticPointerPreference createAutomaticPointerPreference() { - return new AutomaticPointerPreference(); - } - - /** - * Create an instance of {@link ResourceRecordToSearch } - * - */ - public ResourceRecordToSearch createResourceRecordToSearch() { - return new ResourceRecordToSearch(); - } - - /** - * Create an instance of {@link MonitoredRDPoolListKey } - * - */ - public MonitoredRDPoolListKey createMonitoredRDPoolListKey() { - return new MonitoredRDPoolListKey(); - } - - /** - * Create an instance of {@link DefaultDateAndTimePreference } - * - */ - public DefaultDateAndTimePreference createDefaultDateAndTimePreference() { - return new DefaultDateAndTimePreference(); - } - - /** - * Create an instance of {@link ProbeDefinitionTransactions } - * - */ - public ProbeDefinitionTransactions createProbeDefinitionTransactions() { - return new ProbeDefinitionTransactions(); - } - - /** - * Create an instance of {@link AddressBookEntryCreate } - * - */ - public AddressBookEntryCreate createAddressBookEntryCreate() { - return new AddressBookEntryCreate(); - } - - /** - * Create an instance of {@link SMTPSendMailProbeData } - * - */ - public SMTPSendMailProbeData createSMTPSendMailProbeData() { - return new SMTPSendMailProbeData(); - } - - /** - * Create an instance of {@link SimpleFailoverConversionInfo } - * - */ - public SimpleFailoverConversionInfo createSimpleFailoverConversionInfo() { - return new SimpleFailoverConversionInfo(); - } - - /** - * Create an instance of {@link ARecord } - * - */ - public ARecord createARecord() { - return new ARecord(); - } - - /** - * Create an instance of {@link AlertRecord } - * - */ - public AlertRecord createAlertRecord() { - return new AlertRecord(); - } - - /** - * Create an instance of {@link AccountDetailsData } - * - */ - public AccountDetailsData createAccountDetailsData() { - return new AccountDetailsData(); - } - - /** - * Create an instance of {@link DeleteConfirmPreference } - * - */ - public DeleteConfirmPreference createDeleteConfirmPreference() { - return new DeleteConfirmPreference(); - } - - /** - * Create an instance of {@link MonitoredRDPoolMonitorUpdate } - * - */ - public MonitoredRDPoolMonitorUpdate createMonitoredRDPoolMonitorUpdate() { - return new MonitoredRDPoolMonitorUpdate(); - } - - /** - * Create an instance of {@link DefaultAccountPreference } - * - */ - public DefaultAccountPreference createDefaultAccountPreference() { - return new DefaultAccountPreference(); - } - - /** - * Create an instance of {@link InfoTypes } - * - */ - public InfoTypes createInfoTypes() { - return new InfoTypes(); - } - - /** - * Create an instance of {@link ARPoolConfigurationKey } - * - */ - public ARPoolConfigurationKey createARPoolConfigurationKey() { - return new ARPoolConfigurationKey(); - } - - /** - * Create an instance of {@link RoundRobinRecord } - * - */ - public RoundRobinRecord createRoundRobinRecord() { - return new RoundRobinRecord(); - } - - /** - * Create an instance of {@link FTPProbeData } - * - */ - public FTPProbeData createFTPProbeData() { - return new FTPProbeData(); - } - - /** - * Create an instance of {@link GeneralZoneProperties } - * - */ - public GeneralZoneProperties createGeneralZoneProperties() { - return new GeneralZoneProperties(); - } - - /** - * Create an instance of {@link UserContactInfo } - * - */ - public UserContactInfo createUserContactInfo() { - return new UserContactInfo(); - } - - /** - * Create an instance of {@link NotifyRecordList } - * - */ - public NotifyRecordList createNotifyRecordList() { - return new NotifyRecordList(); - } - - /** - * Create an instance of {@link DirectionalDNSRecord } - * - */ - public DirectionalDNSRecord createDirectionalDNSRecord() { - return new DirectionalDNSRecord(); - } - - /** - * Create an instance of {@link FailoverRecord } - * - */ - public FailoverRecord createFailoverRecord() { - return new FailoverRecord(); - } - - /** - * Create an instance of {@link SBRegionData } - * - */ - public SBRegionData createSBRegionData() { - return new SBRegionData(); - } - - /** - * Create an instance of {@link ARAlertStateDetails } - * - */ - public ARAlertStateDetails createARAlertStateDetails() { - return new ARAlertStateDetails(); - } - - /** - * Create an instance of {@link SUBPOOLRecord } - * - */ - public SUBPOOLRecord createSUBPOOLRecord() { - return new SUBPOOLRecord(); - } - - /** - * Create an instance of {@link UsersList } - * - */ - public UsersList createUsersList() { - return new UsersList(); - } - - /** - * Create an instance of {@link ARPoolProbes } - * - */ - public ARPoolProbes createARPoolProbes() { - return new ARPoolProbes(); - } - - /** - * Create an instance of {@link ContactARPoolRuleInfo } - * - */ - public ContactARPoolRuleInfo createContactARPoolRuleInfo() { - return new ContactARPoolRuleInfo(); - } - - /** - * Create an instance of {@link ARPoolRecord } - * - */ - public ARPoolRecord createARPoolRecord() { - return new ARPoolRecord(); - } - - /** - * Create an instance of {@link UltraZone } - * - */ - public UltraZone createUltraZone() { - return new UltraZone(); - } - - /** - * Create an instance of {@link UserSummary } - * - */ - public UserSummary createUserSummary() { - return new UserSummary(); - } - - /** - * Create an instance of {@link SimpleFailoverPoolKey } - * - */ - public SimpleFailoverPoolKey createSimpleFailoverPoolKey() { - return new SimpleFailoverPoolKey(); - } - - /** - * Create an instance of {@link ARPoolConfigurationUpdate } - * - */ - public ARPoolConfigurationUpdate createARPoolConfigurationUpdate() { - return new ARPoolConfigurationUpdate(); - } - - /** - * Create an instance of {@link MaintenanceAlertsData } - * - */ - public MaintenanceAlertsData createMaintenanceAlertsData() { - return new MaintenanceAlertsData(); - } - - /** - * Create an instance of {@link AddressBookEntryKey } - * - */ - public AddressBookEntryKey createAddressBookEntryKey() { - return new AddressBookEntryKey(); - } - - /** - * Create an instance of {@link GeolocationGroupDefinitionData } - * - */ - public GeolocationGroupDefinitionData createGeolocationGroupDefinitionData() { - return new GeolocationGroupDefinitionData(); - } - - /** - * Create an instance of {@link PasswordVerificationQuestion } - * - */ - public PasswordVerificationQuestion createPasswordVerificationQuestion() { - return new PasswordVerificationQuestion(); - } - - /** - * Create an instance of {@link GlobalDirectionalGroupDetails } - * - */ - public GlobalDirectionalGroupDetails createGlobalDirectionalGroupDetails() { - return new GlobalDirectionalGroupDetails(); - } - - /** - * Create an instance of {@link ARPoolAlertsKey } - * - */ - public ARPoolAlertsKey createARPoolAlertsKey() { - return new ARPoolAlertsKey(); - } - - /** - * Create an instance of {@link FailoverRecordUpdate } - * - */ - public FailoverRecordUpdate createFailoverRecordUpdate() { - return new FailoverRecordUpdate(); - } - - /** - * Create an instance of {@link NotificationList } - * - */ - public NotificationList createNotificationList() { - return new NotificationList(); - } - - /** - * Create an instance of {@link CopyAssignedDirDNSGroup } - * - */ - public CopyAssignedDirDNSGroup createCopyAssignedDirDNSGroup() { - return new CopyAssignedDirDNSGroup(); - } - - /** - * Create an instance of {@link PrioritizedRecordList } - * - */ - public PrioritizedRecordList createPrioritizedRecordList() { - return new PrioritizedRecordList(); - } - - /** - * Create an instance of {@link ProbeDefinitionHttpTransactions } - * - */ - public ProbeDefinitionHttpTransactions createProbeDefinitionHttpTransactions() { - return new ProbeDefinitionHttpTransactions(); - } - - /** - * Create an instance of {@link DashboardTypeOrderInfoList } - * - */ - public DashboardTypeOrderInfoList createDashboardTypeOrderInfoList() { - return new DashboardTypeOrderInfoList(); - } - - /** - * Create an instance of {@link ProbeDefinitionList } - * - */ - public ProbeDefinitionList createProbeDefinitionList() { - return new ProbeDefinitionList(); - } - - /** - * Create an instance of {@link AlertSummaryList } - * - */ - public AlertSummaryList createAlertSummaryList() { - return new AlertSummaryList(); - } - - /** - * Create an instance of {@link ServiceList } - * - */ - public ServiceList createServiceList() { - return new ServiceList(); - } - - /** - * Create an instance of {@link PoolConfiguration } - * - */ - public PoolConfiguration createPoolConfiguration() { - return new PoolConfiguration(); - } - - /** - * Create an instance of {@link AlertPrioritizedRecord } - * - */ - public AlertPrioritizedRecord createAlertPrioritizedRecord() { - return new AlertPrioritizedRecord(); - } - - /** - * Create an instance of {@link CopyDirectionalGroup } - * - */ - public CopyDirectionalGroup createCopyDirectionalGroup() { - return new CopyDirectionalGroup(); - } - - /** - * Create an instance of {@link MonitoredRDPoolAllFailRecordUpdate } - * - */ - public MonitoredRDPoolAllFailRecordUpdate createMonitoredRDPoolAllFailRecordUpdate() { - return new MonitoredRDPoolAllFailRecordUpdate(); - } - - /** - * Create an instance of {@link ARPoolAlerts } - * - */ - public ARPoolAlerts createARPoolAlerts() { - return new ARPoolAlerts(); - } - - /** - * Create an instance of {@link PoolConfigurationDetails } - * - */ - public PoolConfigurationDetails createPoolConfigurationDetails() { - return new PoolConfigurationDetails(); - } - - /** - * Create an instance of {@link DNSProbeData } - * - */ - public DNSProbeData createDNSProbeData() { - return new DNSProbeData(); - } - - /** - * Create an instance of {@link LBPoolList } - * - */ - public LBPoolList createLBPoolList() { - return new LBPoolList(); - } - - /** - * Create an instance of {@link PoolAlertsListParams } - * - */ - public PoolAlertsListParams createPoolAlertsListParams() { - return new PoolAlertsListParams(); - } - - /** - * Create an instance of {@link Notifications } - * - */ - public Notifications createNotifications() { - return new Notifications(); - } - - /** - * Create an instance of {@link SuspendZoneRequest } - * - */ - public SuspendZoneRequest createSuspendZoneRequest() { - return new SuspendZoneRequest(); - } - - /** - * Create an instance of {@link ARPoolAlert } - * - */ - public ARPoolAlert createARPoolAlert() { - return new ARPoolAlert(); - } - - /** - * Create an instance of {@link EntryListParams } - * - */ - public EntryListParams createEntryListParams() { - return new EntryListParams(); - } - - /** - * Create an instance of {@link DirectionalRecordData } - * - */ - public DirectionalRecordData createDirectionalRecordData() { - return new DirectionalRecordData(); - } - - /** - * Create an instance of {@link NotifyRecord } - * - */ - public NotifyRecord createNotifyRecord() { - return new NotifyRecord(); - } - - /** - * Create an instance of {@link AccountDetailsList } - * - */ - public AccountDetailsList createAccountDetailsList() { - return new AccountDetailsList(); - } - - /** - * Create an instance of {@link NameServerIPs } - * - */ - public NameServerIPs createNameServerIPs() { - return new NameServerIPs(); - } - - /** - * Create an instance of {@link TaskStatus } - * - */ - public TaskStatus createTaskStatus() { - return new TaskStatus(); - } - - /** - * Create an instance of {@link AllCountriesList } - * - */ - public AllCountriesList createAllCountriesList() { - return new AllCountriesList(); - } - - /** - * Create an instance of {@link DnssecKey } - * - */ - public DnssecKey createDnssecKey() { - return new DnssecKey(); - } - - /** - * Create an instance of {@link WebForwardPoolRecordDataGuid } - * - */ - public WebForwardPoolRecordDataGuid createWebForwardPoolRecordDataGuid() { - return new WebForwardPoolRecordDataGuid(); - } - - /** - * Create an instance of {@link SBRegionsList } - * - */ - public SBRegionsList createSBRegionsList() { - return new SBRegionsList(); - } - - /** - * Create an instance of {@link CustomHTTPHeaderDataGUID } - * - */ - public CustomHTTPHeaderDataGUID createCustomHTTPHeaderDataGUID() { - return new CustomHTTPHeaderDataGUID(); - } - - /** - * Create an instance of {@link ProbeListParams } - * - */ - public ProbeListParams createProbeListParams() { - return new ProbeListParams(); - } - - /** - * Create an instance of {@link GeolocationGroupData } - * - */ - public GeolocationGroupData createGeolocationGroupData() { - return new GeolocationGroupData(); - } - - /** - * Create an instance of {@link MonitoredRDPoolRecords } - * - */ - public MonitoredRDPoolRecords createMonitoredRDPoolRecords() { - return new MonitoredRDPoolRecords(); - } - - /** - * Create an instance of {@link HTTPTransaction } - * - */ - public HTTPTransaction createHTTPTransaction() { - return new HTTPTransaction(); - } - - /** - * Create an instance of {@link GroupData } - * - */ - public GroupData createGroupData() { - return new GroupData(); - } - - /** - * Create an instance of {@link ZoneList } - * - */ - public ZoneList createZoneList() { - return new ZoneList(); - } - - /** - * Create an instance of {@link SBAgentsList } - * - */ - public SBAgentsList createSBAgentsList() { - return new SBAgentsList(); - } - - /** - * Create an instance of {@link AlertAllFailRecordsList } - * - */ - public AlertAllFailRecordsList createAlertAllFailRecordsList() { - return new AlertAllFailRecordsList(); - } - - /** - * Create an instance of {@link AlertProbeDetails } - * - */ - public AlertProbeDetails createAlertProbeDetails() { - return new AlertProbeDetails(); - } - - /** - * Create an instance of {@link ResourceRecordTemplate } - * - */ - public ResourceRecordTemplate createResourceRecordTemplate() { - return new ResourceRecordTemplate(); - } - - /** - * Create an instance of {@link AccountLevelNotificationsData } - * - */ - public AccountLevelNotificationsData createAccountLevelNotificationsData() { - return new AccountLevelNotificationsData(); - } - - /** - * Create an instance of {@link DirectionalPoolData } - * - */ - public DirectionalPoolData createDirectionalPoolData() { - return new DirectionalPoolData(); - } - - /** - * Create an instance of {@link PoolUpdate } - * - */ - public PoolUpdate createPoolUpdate() { - return new PoolUpdate(); - } - - /** - * Create an instance of {@link PoolKey } - * - */ - public PoolKey createPoolKey() { - return new PoolKey(); - } - - /** - * Create an instance of {@link UserSummaryList } - * - */ - public UserSummaryList createUserSummaryList() { - return new UserSummaryList(); - } - - /** - * Create an instance of {@link ProbeAlertsData } - * - */ - public ProbeAlertsData createProbeAlertsData() { - return new ProbeAlertsData(); - } - - /** - * Create an instance of {@link PoolListParams } - * - */ - public PoolListParams createPoolListParams() { - return new PoolListParams(); - } - - /** - * Create an instance of {@link DNSTransaction } - * - */ - public DNSTransaction createDNSTransaction() { - return new DNSTransaction(); - } - - /** - * Create an instance of {@link UpdateDirectionalRecordData } - * - */ - public UpdateDirectionalRecordData createUpdateDirectionalRecordData() { - return new UpdateDirectionalRecordData(); - } - - /** - * Create an instance of {@link UserContactInfoValues } - * - */ - public UserContactInfoValues createUserContactInfoValues() { - return new UserContactInfoValues(); - } - - /** - * Create an instance of {@link GeneralNotificationStatusList } - * - */ - public GeneralNotificationStatusList createGeneralNotificationStatusList() { - return new GeneralNotificationStatusList(); - } - - /** - * Create an instance of {@link MonitoredRDPoolKey } - * - */ - public MonitoredRDPoolKey createMonitoredRDPoolKey() { - return new MonitoredRDPoolKey(); - } - - /** - * Create an instance of {@link ServiceInfo } - * - */ - public ServiceInfo createServiceInfo() { - return new ServiceInfo(); - } - - /** - * Create an instance of {@link DomainDnssecPolicies } - * - */ - public DomainDnssecPolicies createDomainDnssecPolicies() { - return new DomainDnssecPolicies(); - } - - /** - * Create an instance of {@link PINGTransaction } - * - */ - public PINGTransaction createPINGTransaction() { - return new PINGTransaction(); - } - - /** - * Create an instance of {@link RestrictIPList } - * - */ - public RestrictIPList createRestrictIPList() { - return new RestrictIPList(); - } - - /** - * Create an instance of {@link PoolRecordSpecData } - * - */ - public PoolRecordSpecData createPoolRecordSpecData() { - return new PoolRecordSpecData(); - } - - /** - * Create an instance of {@link AddressBookEntryList } - * - */ - public AddressBookEntryList createAddressBookEntryList() { - return new AddressBookEntryList(); - } - - /** - * Create an instance of {@link NameServerRecordSet } - * - */ - public NameServerRecordSet createNameServerRecordSet() { - return new NameServerRecordSet(); - } - - /** - * Create an instance of {@link RestrictIP } - * - */ - public RestrictIP createRestrictIP() { - return new RestrictIP(); - } - - /** - * Create an instance of {@link ResourceRecordTypeOrderInfo } - * - */ - public ResourceRecordTypeOrderInfo createResourceRecordTypeOrderInfo() { - return new ResourceRecordTypeOrderInfo(); - } - - /** - * Create an instance of {@link SourceIPGroupDetails } - * - */ - public SourceIPGroupDetails createSourceIPGroupDetails() { - return new SourceIPGroupDetails(); - } - - /** - * Create an instance of {@link WebForwardPoolRecordDataList } - * - */ - public WebForwardPoolRecordDataList createWebForwardPoolRecordDataList() { - return new WebForwardPoolRecordDataList(); - } - - /** - * Create an instance of {@link SMTPTransaction } - * - */ - public SMTPTransaction createSMTPTransaction() { - return new SMTPTransaction(); - } - - /** - * Create an instance of {@link AccountLevelGroup } - * - */ - public AccountLevelGroup createAccountLevelGroup() { - return new AccountLevelGroup(); - } - - /** - * Create an instance of {@link Regions } - * - */ - public Regions createRegions() { - return new Regions(); - } - - /** - * Create an instance of {@link Rule } - * - */ - public Rule createRule() { - return new Rule(); - } - - /** - * Create an instance of {@link PoolRecordData } - * - */ - public PoolRecordData createPoolRecordData() { - return new PoolRecordData(); - } - - /** - * Create an instance of {@link MonitoredRDPoolAdd } - * - */ - public MonitoredRDPoolAdd createMonitoredRDPoolAdd() { - return new MonitoredRDPoolAdd(); - } - - /** - * Create an instance of {@link PasswordVerificationInfo } - * - */ - public PasswordVerificationInfo createPasswordVerificationInfo() { - return new PasswordVerificationInfo(); - } - - /** - * Create an instance of {@link RDPoolConversionInfo } - * - */ - public RDPoolConversionInfo createRDPoolConversionInfo() { - return new RDPoolConversionInfo(); - } - - /** - * Create an instance of {@link ResourceRecordToCreate } - * - */ - public ResourceRecordToCreate createResourceRecordToCreate() { - return new ResourceRecordToCreate(); - } - - /** - * Create an instance of {@link SourceIPGroupData } - * - */ - public SourceIPGroupData createSourceIPGroupData() { - return new SourceIPGroupData(); - } - - /** - * Create an instance of {@link Record } - * - */ - public Record createRecord() { - return new Record(); - } - - /** - * Create an instance of {@link ARPoolRecordsList } - * - */ - public ARPoolRecordsList createARPoolRecordsList() { - return new ARPoolRecordsList(); - } - - /** - * Create an instance of {@link ARPoolRecordListKey } - * - */ - public ARPoolRecordListKey createARPoolRecordListKey() { - return new ARPoolRecordListKey(); - } - - /** - * Create an instance of {@link PasswordExpirationPreference } - * - */ - public PasswordExpirationPreference createPasswordExpirationPreference() { - return new PasswordExpirationPreference(); - } - - /** - * Create an instance of {@link AccountInfoData } - * - */ - public AccountInfoData createAccountInfoData() { - return new AccountInfoData(); - } - - /** - * Create an instance of {@link TCPTransaction } - * - */ - public TCPTransaction createTCPTransaction() { - return new TCPTransaction(); - } - - /** - * Create an instance of {@link NotificationInfo } - * - */ - public NotificationInfo createNotificationInfo() { - return new NotificationInfo(); - } - - /** - * Create an instance of {@link MailForwardRecord } - * - */ - public MailForwardRecord createMailForwardRecord() { - return new MailForwardRecord(); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schema.ultraservice.neustar.com/v01/", name = "ttl", scope = ProbeInfo2 .class) - public JAXBElement createProbeInfo2Ttl(Long value) { - return new JAXBElement(_ProbeInfo2Ttl_QNAME, Long.class, ProbeInfo2 .class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link NameServerRecordSet }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schema.ultraservice.neustar.com/v01/", name = "NameServerRecordSet", scope = NameServers.class) - public JAXBElement createNameServersNameServerRecordSet(NameServerRecordSet value) { - return new JAXBElement(_NameServersNameServerRecordSet_QNAME, NameServerRecordSet.class, NameServers.class, value); - } - - /** - * Create an instance of {@link JAXBElement }{@code <}{@link Long }{@code >}} - * - */ - @XmlElementDecl(namespace = "http://schema.ultraservice.neustar.com/v01/", name = "ttl", scope = MonitoredRDPoolUpdate.class) - public JAXBElement createMonitoredRDPoolUpdateTtl(Long value) { - return new JAXBElement(_ProbeInfo2Ttl_QNAME, Long.class, MonitoredRDPoolUpdate.class, value); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PINGProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PINGProbeData.java deleted file mode 100644 index 8a05ca92a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PINGProbeData.java +++ /dev/null @@ -1,573 +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; - - -/** - *

Java class for PINGProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PINGProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="numberOfPackets" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="sizeOfPackets" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="percentageOfLostPackets" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="roundTripTimeInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failPercentageOfLostPackets" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalPercentageOfLostPackets" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningPercentageOfLostPackets" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRoundTripTimeInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRoundTripTimeInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRoundTripTimeInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRTTInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRTTInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRTTInMs" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PINGProbeData") -public class PINGProbeData { - - @XmlAttribute(name = "numberOfPackets") - protected String numberOfPackets; - @XmlAttribute(name = "sizeOfPackets") - protected String sizeOfPackets; - @XmlAttribute(name = "percentageOfLostPackets") - protected String percentageOfLostPackets; - @XmlAttribute(name = "roundTripTimeInMs") - protected String roundTripTimeInMs; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "failPercentageOfLostPackets") - protected String failPercentageOfLostPackets; - @XmlAttribute(name = "criticalPercentageOfLostPackets") - protected String criticalPercentageOfLostPackets; - @XmlAttribute(name = "warningPercentageOfLostPackets") - protected String warningPercentageOfLostPackets; - @XmlAttribute(name = "failRoundTripTimeInMs") - protected String failRoundTripTimeInMs; - @XmlAttribute(name = "criticalRoundTripTimeInMs") - protected String criticalRoundTripTimeInMs; - @XmlAttribute(name = "warningRoundTripTimeInMs") - protected String warningRoundTripTimeInMs; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - @XmlAttribute(name = "failAverageRTTInMs") - protected String failAverageRTTInMs; - @XmlAttribute(name = "criticalAverageRTTInMs") - protected String criticalAverageRTTInMs; - @XmlAttribute(name = "warningAverageRTTInMs") - protected String warningAverageRTTInMs; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - - /** - * Gets the value of the numberOfPackets property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumberOfPackets() { - return numberOfPackets; - } - - /** - * Sets the value of the numberOfPackets property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumberOfPackets(String value) { - this.numberOfPackets = value; - } - - /** - * Gets the value of the sizeOfPackets property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSizeOfPackets() { - return sizeOfPackets; - } - - /** - * Sets the value of the sizeOfPackets property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSizeOfPackets(String value) { - this.sizeOfPackets = value; - } - - /** - * Gets the value of the percentageOfLostPackets property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPercentageOfLostPackets() { - return percentageOfLostPackets; - } - - /** - * Sets the value of the percentageOfLostPackets property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPercentageOfLostPackets(String value) { - this.percentageOfLostPackets = value; - } - - /** - * Gets the value of the roundTripTimeInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRoundTripTimeInMs() { - return roundTripTimeInMs; - } - - /** - * Sets the value of the roundTripTimeInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRoundTripTimeInMs(String value) { - this.roundTripTimeInMs = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the failPercentageOfLostPackets property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailPercentageOfLostPackets() { - return failPercentageOfLostPackets; - } - - /** - * Sets the value of the failPercentageOfLostPackets property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailPercentageOfLostPackets(String value) { - this.failPercentageOfLostPackets = value; - } - - /** - * Gets the value of the criticalPercentageOfLostPackets property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalPercentageOfLostPackets() { - return criticalPercentageOfLostPackets; - } - - /** - * Sets the value of the criticalPercentageOfLostPackets property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalPercentageOfLostPackets(String value) { - this.criticalPercentageOfLostPackets = value; - } - - /** - * Gets the value of the warningPercentageOfLostPackets property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningPercentageOfLostPackets() { - return warningPercentageOfLostPackets; - } - - /** - * Sets the value of the warningPercentageOfLostPackets property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningPercentageOfLostPackets(String value) { - this.warningPercentageOfLostPackets = value; - } - - /** - * Gets the value of the failRoundTripTimeInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRoundTripTimeInMs() { - return failRoundTripTimeInMs; - } - - /** - * Sets the value of the failRoundTripTimeInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRoundTripTimeInMs(String value) { - this.failRoundTripTimeInMs = value; - } - - /** - * Gets the value of the criticalRoundTripTimeInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRoundTripTimeInMs() { - return criticalRoundTripTimeInMs; - } - - /** - * Sets the value of the criticalRoundTripTimeInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRoundTripTimeInMs(String value) { - this.criticalRoundTripTimeInMs = value; - } - - /** - * Gets the value of the warningRoundTripTimeInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRoundTripTimeInMs() { - return warningRoundTripTimeInMs; - } - - /** - * Sets the value of the warningRoundTripTimeInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRoundTripTimeInMs(String value) { - this.warningRoundTripTimeInMs = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - - /** - * Gets the value of the failAverageRTTInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRTTInMs() { - return failAverageRTTInMs; - } - - /** - * Sets the value of the failAverageRTTInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRTTInMs(String value) { - this.failAverageRTTInMs = value; - } - - /** - * Gets the value of the criticalAverageRTTInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRTTInMs() { - return criticalAverageRTTInMs; - } - - /** - * Sets the value of the criticalAverageRTTInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRTTInMs(String value) { - this.criticalAverageRTTInMs = value; - } - - /** - * Gets the value of the warningAverageRTTInMs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRTTInMs() { - return warningAverageRTTInMs; - } - - /** - * Sets the value of the warningAverageRTTInMs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRTTInMs(String value) { - this.warningAverageRTTInMs = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PINGTransaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PINGTransaction.java deleted file mode 100644 index f6f186030..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PINGTransaction.java +++ /dev/null @@ -1,169 +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; - - -/** - *

Java class for PINGTransaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PINGTransaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}PingCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}PingCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}PingCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="packets" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}int" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PINGTransaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class PINGTransaction { - - protected PingCriteria warningCriteria; - protected PingCriteria criticalCriteria; - protected PingCriteria failCriteria; - @XmlAttribute(name = "packets") - protected Integer packets; - @XmlAttribute(name = "size") - protected Integer size; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link PingCriteria } - * - */ - public PingCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link PingCriteria } - * - */ - public void setWarningCriteria(PingCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link PingCriteria } - * - */ - public PingCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link PingCriteria } - * - */ - public void setCriticalCriteria(PingCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link PingCriteria } - * - */ - public PingCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link PingCriteria } - * - */ - public void setFailCriteria(PingCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the packets property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPackets() { - return packets; - } - - /** - * Sets the value of the packets property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPackets(Integer value) { - this.packets = value; - } - - /** - * Gets the value of the size property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getSize() { - return size; - } - - /** - * Sets the value of the size property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setSize(Integer value) { - this.size = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PROXYProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PROXYProbeData.java deleted file mode 100644 index b3b4fd77b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PROXYProbeData.java +++ /dev/null @@ -1,573 +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; - - -/** - *

Java class for PROXYProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PROXYProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="proxyPort" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="url" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="totalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="connectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failTotalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalTotalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningTotalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PROXYProbeData") -public class PROXYProbeData { - - @XmlAttribute(name = "proxyPort") - protected String proxyPort; - @XmlAttribute(name = "url") - protected String url; - @XmlAttribute(name = "totalRuntime") - protected String totalRuntime; - @XmlAttribute(name = "connectTime") - protected String connectTime; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "failTotalRuntime") - protected String failTotalRuntime; - @XmlAttribute(name = "criticalTotalRuntime") - protected String criticalTotalRuntime; - @XmlAttribute(name = "warningTotalRuntime") - protected String warningTotalRuntime; - @XmlAttribute(name = "failConnectTime") - protected String failConnectTime; - @XmlAttribute(name = "criticalConnectTime") - protected String criticalConnectTime; - @XmlAttribute(name = "warningConnectTime") - protected String warningConnectTime; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - @XmlAttribute(name = "failAverageConnectTime") - protected String failAverageConnectTime; - @XmlAttribute(name = "criticalAverageConnectTime") - protected String criticalAverageConnectTime; - @XmlAttribute(name = "warningAverageConnectTime") - protected String warningAverageConnectTime; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - - /** - * Gets the value of the proxyPort property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProxyPort() { - return proxyPort; - } - - /** - * Sets the value of the proxyPort property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProxyPort(String value) { - this.proxyPort = value; - } - - /** - * Gets the value of the url property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUrl() { - return url; - } - - /** - * Sets the value of the url property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUrl(String value) { - this.url = value; - } - - /** - * Gets the value of the totalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTotalRuntime() { - return totalRuntime; - } - - /** - * Sets the value of the totalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTotalRuntime(String value) { - this.totalRuntime = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConnectTime(String value) { - this.connectTime = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the failTotalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailTotalRuntime() { - return failTotalRuntime; - } - - /** - * Sets the value of the failTotalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailTotalRuntime(String value) { - this.failTotalRuntime = value; - } - - /** - * Gets the value of the criticalTotalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalTotalRuntime() { - return criticalTotalRuntime; - } - - /** - * Sets the value of the criticalTotalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalTotalRuntime(String value) { - this.criticalTotalRuntime = value; - } - - /** - * Gets the value of the warningTotalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningTotalRuntime() { - return warningTotalRuntime; - } - - /** - * Sets the value of the warningTotalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningTotalRuntime(String value) { - this.warningTotalRuntime = value; - } - - /** - * Gets the value of the failConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailConnectTime() { - return failConnectTime; - } - - /** - * Sets the value of the failConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailConnectTime(String value) { - this.failConnectTime = value; - } - - /** - * Gets the value of the criticalConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalConnectTime() { - return criticalConnectTime; - } - - /** - * Sets the value of the criticalConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalConnectTime(String value) { - this.criticalConnectTime = value; - } - - /** - * Gets the value of the warningConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningConnectTime() { - return warningConnectTime; - } - - /** - * Sets the value of the warningConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningConnectTime(String value) { - this.warningConnectTime = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - - /** - * Gets the value of the failAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageConnectTime() { - return failAverageConnectTime; - } - - /** - * Sets the value of the failAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageConnectTime(String value) { - this.failAverageConnectTime = value; - } - - /** - * Gets the value of the criticalAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageConnectTime() { - return criticalAverageConnectTime; - } - - /** - * Sets the value of the criticalAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageConnectTime(String value) { - this.criticalAverageConnectTime = value; - } - - /** - * Gets the value of the warningAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageConnectTime() { - return warningAverageConnectTime; - } - - /** - * Sets the value of the warningAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageConnectTime(String value) { - this.warningAverageConnectTime = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordExpirationPreference.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordExpirationPreference.java deleted file mode 100644 index 598132220..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordExpirationPreference.java +++ /dev/null @@ -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; - - -/** - *

Java class for PasswordExpirationPreference complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PasswordExpirationPreference">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="PasswordExpiration" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PasswordExpirationPreference") -public class PasswordExpirationPreference { - - @XmlAttribute(name = "PasswordExpiration") - protected String passwordExpiration; - - /** - * Gets the value of the passwordExpiration property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPasswordExpiration() { - return passwordExpiration; - } - - /** - * Sets the value of the passwordExpiration property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPasswordExpiration(String value) { - this.passwordExpiration = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationInfo.java deleted file mode 100644 index 571534ad7..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationInfo.java +++ /dev/null @@ -1,106 +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; - - -/** - *

Java class for PasswordVerificationInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PasswordVerificationInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="QuestionId" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
- *       <attribute name="Question" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Answer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PasswordVerificationInfo") -public class PasswordVerificationInfo { - - @XmlAttribute(name = "QuestionId", required = true) - protected long questionId; - @XmlAttribute(name = "Question", required = true) - protected String question; - @XmlAttribute(name = "Answer", required = true) - protected String answer; - - /** - * Gets the value of the questionId property. - * - */ - public long getQuestionId() { - return questionId; - } - - /** - * Sets the value of the questionId property. - * - */ - public void setQuestionId(long value) { - this.questionId = value; - } - - /** - * Gets the value of the question property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getQuestion() { - return question; - } - - /** - * Sets the value of the question property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setQuestion(String value) { - this.question = value; - } - - /** - * Gets the value of the answer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnswer() { - return answer; - } - - /** - * Sets the value of the answer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnswer(String value) { - this.answer = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationQuestion.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationQuestion.java deleted file mode 100644 index 7d32df976..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationQuestion.java +++ /dev/null @@ -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; - - -/** - *

Java class for PasswordVerificationQuestion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PasswordVerificationQuestion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="answer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="question" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="questionId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PasswordVerificationQuestion") -public class PasswordVerificationQuestion { - - @XmlAttribute(name = "answer", required = true) - protected String answer; - @XmlAttribute(name = "question", required = true) - protected String question; - @XmlAttribute(name = "questionId", required = true) - protected String questionId; - - /** - * Gets the value of the answer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAnswer() { - return answer; - } - - /** - * Sets the value of the answer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAnswer(String value) { - this.answer = value; - } - - /** - * Gets the value of the question property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getQuestion() { - return question; - } - - /** - * Sets the value of the question property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setQuestion(String value) { - this.question = value; - } - - /** - * Gets the value of the questionId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getQuestionId() { - return questionId; - } - - /** - * Sets the value of the questionId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setQuestionId(String value) { - this.questionId = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationQuestionList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationQuestionList.java deleted file mode 100644 index 43a5a3a18..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PasswordVerificationQuestionList.java +++ /dev/null @@ -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; - - -/** - *

Java class for PasswordVerificationQuestionList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PasswordVerificationQuestionList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PasswordVerificationQuestion" type="{http://schema.ultraservice.neustar.com/v01/}PasswordVerificationQuestion" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PasswordVerificationQuestionList", propOrder = { - "passwordVerificationQuestion" -}) -public class PasswordVerificationQuestionList { - - @XmlElement(name = "PasswordVerificationQuestion", required = true) - protected List passwordVerificationQuestion; - - /** - * Gets the value of the passwordVerificationQuestion property. - * - *

- * 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 set method for the passwordVerificationQuestion property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPasswordVerificationQuestion().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PasswordVerificationQuestion } - * - * - */ - public List getPasswordVerificationQuestion() { - if (passwordVerificationQuestion == null) { - passwordVerificationQuestion = new ArrayList(); - } - return this.passwordVerificationQuestion; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PingCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PingCriteria.java deleted file mode 100644 index d1e652c0f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PingCriteria.java +++ /dev/null @@ -1,168 +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; - - -/** - *

Java class for PingCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PingCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="runTime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="runTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="connectTime" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="connectTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="percentLost" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PingCriteria", propOrder = { - "runTime", - "runTimeAverage", - "connectTime", - "connectTimeAverage", - "percentLost" -}) -public class PingCriteria { - - protected Integer runTime; - protected Integer runTimeAverage; - protected Integer connectTime; - protected Integer connectTimeAverage; - protected Integer percentLost; - - /** - * Gets the value of the runTime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTime() { - return runTime; - } - - /** - * Sets the value of the runTime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTime(Integer value) { - this.runTime = value; - } - - /** - * Gets the value of the runTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTimeAverage() { - return runTimeAverage; - } - - /** - * Sets the value of the runTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTimeAverage(Integer value) { - this.runTimeAverage = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTime(Integer value) { - this.connectTime = value; - } - - /** - * Gets the value of the connectTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTimeAverage() { - return connectTimeAverage; - } - - /** - * Sets the value of the connectTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTimeAverage(Integer value) { - this.connectTimeAverage = value; - } - - /** - * Gets the value of the percentLost property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getPercentLost() { - return percentLost; - } - - /** - * Sets the value of the percentLost property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setPercentLost(Integer value) { - this.percentLost = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Pool.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Pool.java deleted file mode 100644 index e85012e02..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Pool.java +++ /dev/null @@ -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.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Pool complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Pool">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <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/}PoolRecordType"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Pool", propOrder = { - "zoneName", - "poolName", - "description", - "poolRecordType" -}) -public class Pool { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected String poolName; - protected String description; - @XmlElement(required = true) - protected PoolRecordType poolRecordType; - - /** - * 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 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 PoolRecordType } - * - */ - public PoolRecordType getPoolRecordType() { - return poolRecordType; - } - - /** - * Sets the value of the poolRecordType property. - * - * @param value - * allowed object is - * {@link PoolRecordType } - * - */ - public void setPoolRecordType(PoolRecordType value) { - this.poolRecordType = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolAlertDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolAlertDetails.java deleted file mode 100644 index d0d21fa96..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolAlertDetails.java +++ /dev/null @@ -1,202 +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; - - -/** - *

Java class for PoolAlertDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolAlertDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="alertTime" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="pool" type="{http://schema.ultraservice.neustar.com/v01/}AlertPoolDetails"/>
- *         <element name="poolRecord" type="{http://schema.ultraservice.neustar.com/v01/}AlertRecord"/>
- *         <element name="probeDetails" type="{http://schema.ultraservice.neustar.com/v01/}AlertProbeDetails"/>
- *         <element name="ruleTransitionDetails" type="{http://schema.ultraservice.neustar.com/v01/}ARAlertRuleDetails"/>
- *         <element name="stateTransitionDetails" type="{http://schema.ultraservice.neustar.com/v01/}ARAlertStateDetails"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolAlertDetails", propOrder = { - "alertTime", - "pool", - "poolRecord", - "probeDetails", - "ruleTransitionDetails", - "stateTransitionDetails" -}) -public class PoolAlertDetails { - - @XmlElement(required = true) - protected String alertTime; - @XmlElement(required = true) - protected AlertPoolDetails pool; - @XmlElement(required = true) - protected AlertRecord poolRecord; - @XmlElement(required = true) - protected AlertProbeDetails probeDetails; - @XmlElement(required = true) - protected ARAlertRuleDetails ruleTransitionDetails; - @XmlElement(required = true) - protected ARAlertStateDetails stateTransitionDetails; - - /** - * Gets the value of the alertTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlertTime() { - return alertTime; - } - - /** - * Sets the value of the alertTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlertTime(String value) { - this.alertTime = value; - } - - /** - * Gets the value of the pool property. - * - * @return - * possible object is - * {@link AlertPoolDetails } - * - */ - public AlertPoolDetails getPool() { - return pool; - } - - /** - * Sets the value of the pool property. - * - * @param value - * allowed object is - * {@link AlertPoolDetails } - * - */ - public void setPool(AlertPoolDetails value) { - this.pool = value; - } - - /** - * Gets the value of the poolRecord property. - * - * @return - * possible object is - * {@link AlertRecord } - * - */ - public AlertRecord getPoolRecord() { - return poolRecord; - } - - /** - * Sets the value of the poolRecord property. - * - * @param value - * allowed object is - * {@link AlertRecord } - * - */ - public void setPoolRecord(AlertRecord value) { - this.poolRecord = value; - } - - /** - * Gets the value of the probeDetails property. - * - * @return - * possible object is - * {@link AlertProbeDetails } - * - */ - public AlertProbeDetails getProbeDetails() { - return probeDetails; - } - - /** - * Sets the value of the probeDetails property. - * - * @param value - * allowed object is - * {@link AlertProbeDetails } - * - */ - public void setProbeDetails(AlertProbeDetails value) { - this.probeDetails = value; - } - - /** - * Gets the value of the ruleTransitionDetails property. - * - * @return - * possible object is - * {@link ARAlertRuleDetails } - * - */ - public ARAlertRuleDetails getRuleTransitionDetails() { - return ruleTransitionDetails; - } - - /** - * Sets the value of the ruleTransitionDetails property. - * - * @param value - * allowed object is - * {@link ARAlertRuleDetails } - * - */ - public void setRuleTransitionDetails(ARAlertRuleDetails value) { - this.ruleTransitionDetails = value; - } - - /** - * Gets the value of the stateTransitionDetails property. - * - * @return - * possible object is - * {@link ARAlertStateDetails } - * - */ - public ARAlertStateDetails getStateTransitionDetails() { - return stateTransitionDetails; - } - - /** - * Sets the value of the stateTransitionDetails property. - * - * @param value - * allowed object is - * {@link ARAlertStateDetails } - * - */ - public void setStateTransitionDetails(ARAlertStateDetails value) { - this.stateTransitionDetails = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolAlertsListParams.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolAlertsListParams.java deleted file mode 100644 index 3a2fb643c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolAlertsListParams.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for PoolAlertsListParams complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolAlertsListParams">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="limit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolAlertsListParams", propOrder = { - "offset", - "limit" -}) -public class PoolAlertsListParams { - - protected Integer offset; - protected Integer limit; - - /** - * Gets the value of the offset property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Sets the value of the offset property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Gets the value of the limit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLimit() { - return limit; - } - - /** - * Sets the value of the limit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLimit(Integer value) { - this.limit = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfiguration.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfiguration.java deleted file mode 100644 index d9f271910..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfiguration.java +++ /dev/null @@ -1,296 +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; - - -/** - *

Java class for PoolConfiguration complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolConfiguration">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="failoverEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="probingEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="responseMethod" type="{http://schema.ultraservice.neustar.com/v01/}ResponseMethod"/>
- *         <element name="maxActive" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="maxResponse" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="effectiveMaxResponse" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="probesShared" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="rulesShared" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolConfiguration", propOrder = { - "name", - "failoverEnabled", - "probingEnabled", - "responseMethod", - "maxActive", - "maxResponse", - "effectiveMaxResponse", - "probesShared", - "rulesShared", - "ttl", - "description", - "prioritizedRecords" -}) -public class PoolConfiguration { - - @XmlElement(required = true) - protected String name; - protected boolean failoverEnabled; - protected boolean probingEnabled; - @XmlElement(required = true) - protected ResponseMethod responseMethod; - protected long maxActive; - protected long maxResponse; - protected long effectiveMaxResponse; - protected boolean probesShared; - protected boolean rulesShared; - protected long ttl; - protected String description; - protected PrioritizedRecordList prioritizedRecords; - - /** - * 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 failoverEnabled property. - * - */ - public boolean isFailoverEnabled() { - return failoverEnabled; - } - - /** - * Sets the value of the failoverEnabled property. - * - */ - public void setFailoverEnabled(boolean value) { - this.failoverEnabled = value; - } - - /** - * Gets the value of the probingEnabled property. - * - */ - public boolean isProbingEnabled() { - return probingEnabled; - } - - /** - * Sets the value of the probingEnabled property. - * - */ - 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. - * - */ - public long getMaxActive() { - return maxActive; - } - - /** - * Sets the value of the maxActive property. - * - */ - public void setMaxActive(long value) { - this.maxActive = value; - } - - /** - * Gets the value of the maxResponse property. - * - */ - public long getMaxResponse() { - return maxResponse; - } - - /** - * Sets the value of the maxResponse property. - * - */ - public void setMaxResponse(long value) { - this.maxResponse = value; - } - - /** - * Gets the value of the effectiveMaxResponse property. - * - */ - public long getEffectiveMaxResponse() { - return effectiveMaxResponse; - } - - /** - * Sets the value of the effectiveMaxResponse property. - * - */ - public void setEffectiveMaxResponse(long value) { - this.effectiveMaxResponse = value; - } - - /** - * Gets the value of the probesShared property. - * - */ - public boolean isProbesShared() { - return probesShared; - } - - /** - * Sets the value of the probesShared property. - * - */ - public void setProbesShared(boolean value) { - this.probesShared = value; - } - - /** - * Gets the value of the rulesShared property. - * - */ - public boolean isRulesShared() { - return rulesShared; - } - - /** - * Sets the value of the rulesShared property. - * - */ - public void setRulesShared(boolean value) { - this.rulesShared = value; - } - - /** - * Gets the value of the ttl property. - * - */ - public long getTtl() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - */ - 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfigurationDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfigurationDetails.java deleted file mode 100644 index 5f218e25c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfigurationDetails.java +++ /dev/null @@ -1,169 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PoolConfigurationDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolConfigurationDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PoolConfiguration" type="{http://schema.ultraservice.neustar.com/v01/}PoolConfiguration"/>
- *         <element name="PoolRecord" type="{http://schema.ultraservice.neustar.com/v01/}PoolRecord" maxOccurs="unbounded" minOccurs="0"/>
- *         <element name="Probe" type="{http://schema.ultraservice.neustar.com/v01/}Probe" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="isActive" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="maxActive" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolConfigurationDetails", propOrder = { - "poolConfiguration", - "poolRecord", - "probe" -}) -public class PoolConfigurationDetails { - - @XmlElement(name = "PoolConfiguration", required = true) - protected PoolConfiguration poolConfiguration; - @XmlElement(name = "PoolRecord", nillable = true) - protected List poolRecord; - @XmlElement(name = "Probe", nillable = true) - protected List probe; - @XmlAttribute(name = "isActive", required = true) - protected boolean isActive; - @XmlAttribute(name = "maxActive", required = true) - protected int maxActive; - - /** - * Gets the value of the poolConfiguration property. - * - * @return - * possible object is - * {@link PoolConfiguration } - * - */ - public PoolConfiguration getPoolConfiguration() { - return poolConfiguration; - } - - /** - * Sets the value of the poolConfiguration property. - * - * @param value - * allowed object is - * {@link PoolConfiguration } - * - */ - public void setPoolConfiguration(PoolConfiguration value) { - this.poolConfiguration = value; - } - - /** - * Gets the value of the poolRecord property. - * - *

- * 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 set method for the poolRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolRecord } - * - * - */ - public List getPoolRecord() { - if (poolRecord == null) { - poolRecord = new ArrayList(); - } - return this.poolRecord; - } - - /** - * Gets the value of the probe property. - * - *

- * 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 set method for the probe property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProbe().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Probe } - * - * - */ - public List getProbe() { - if (probe == null) { - probe = new ArrayList(); - } - return this.probe; - } - - /** - * Gets the value of the isActive property. - * - */ - public boolean isIsActive() { - return isActive; - } - - /** - * Sets the value of the isActive property. - * - */ - public void setIsActive(boolean value) { - this.isActive = value; - } - - /** - * Gets the value of the maxActive property. - * - */ - public int getMaxActive() { - return maxActive; - } - - /** - * Sets the value of the maxActive property. - * - */ - public void setMaxActive(int value) { - this.maxActive = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfigurationList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfigurationList.java deleted file mode 100644 index d2267b903..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolConfigurationList.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolConfigurationList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolConfigurationList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="poolDefinitions" type="{http://schema.ultraservice.neustar.com/v01/}PoolConfiguration" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolConfigurationList", propOrder = { - "poolDefinitions" -}) -public class PoolConfigurationList { - - @XmlElement(required = true) - protected List poolDefinitions; - - /** - * Gets the value of the poolDefinitions property. - * - *

- * 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 set method for the poolDefinitions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolDefinitions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolConfiguration } - * - * - */ - public List getPoolDefinitions() { - if (poolDefinitions == null) { - poolDefinitions = new ArrayList(); - } - return this.poolDefinitions; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolData.java deleted file mode 100644 index aa734cdb9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolData.java +++ /dev/null @@ -1,465 +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; - - -/** - *

Java class for PoolData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="PoolName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="LBPoolId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolRecordType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Bleid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolStatus" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolDName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="FailOver" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Probing" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="MinActiveServers" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="MaxActiveServers" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ResponseMethod" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="MaxResponse" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="configured" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolData") -public class PoolData { - - @XmlAttribute(name = "PoolName", required = true) - protected String poolName; - @XmlAttribute(name = "LBPoolId", required = true) - protected String lbPoolId; - @XmlAttribute(name = "PoolId", required = true) - protected String poolId; - @XmlAttribute(name = "PoolType", required = true) - protected String poolType; - @XmlAttribute(name = "PoolRecordType", required = true) - protected String poolRecordType; - @XmlAttribute(name = "Bleid", required = true) - protected String bleid; - @XmlAttribute(name = "PoolStatus", required = true) - protected String poolStatus; - @XmlAttribute(name = "PoolDName", required = true) - protected String poolDName; - @XmlAttribute(name = "FailOver", required = true) - protected String failOver; - @XmlAttribute(name = "Probing", required = true) - protected String probing; - @XmlAttribute(name = "MinActiveServers", required = true) - protected String minActiveServers; - @XmlAttribute(name = "MaxActiveServers", required = true) - protected String maxActiveServers; - @XmlAttribute(name = "ResponseMethod") - protected String responseMethod; - @XmlAttribute(name = "MaxResponse") - protected String maxResponse; - @XmlAttribute(name = "description", required = true) - protected String description; - @XmlAttribute(name = "configured", required = true) - protected String configured; - - /** - * 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 lbPoolId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLBPoolId() { - return lbPoolId; - } - - /** - * Sets the value of the lbPoolId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLBPoolId(String value) { - this.lbPoolId = value; - } - - /** - * Gets the value of the poolId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolId() { - return poolId; - } - - /** - * Sets the value of the poolId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolId(String value) { - this.poolId = value; - } - - /** - * Gets the value of the poolType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolType() { - return poolType; - } - - /** - * Sets the value of the poolType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolType(String value) { - this.poolType = value; - } - - /** - * Gets the value of the poolRecordType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolRecordType() { - return poolRecordType; - } - - /** - * Sets the value of the poolRecordType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolRecordType(String value) { - this.poolRecordType = value; - } - - /** - * Gets the value of the bleid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBleid() { - return bleid; - } - - /** - * Sets the value of the bleid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBleid(String value) { - this.bleid = value; - } - - /** - * Gets the value of the poolStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolStatus() { - return poolStatus; - } - - /** - * Sets the value of the poolStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolStatus(String value) { - this.poolStatus = value; - } - - /** - * Gets the value of the poolDName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolDName() { - return poolDName; - } - - /** - * Sets the value of the poolDName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolDName(String value) { - this.poolDName = value; - } - - /** - * Gets the value of the failOver property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailOver() { - return failOver; - } - - /** - * Sets the value of the failOver property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailOver(String value) { - this.failOver = value; - } - - /** - * Gets the value of the probing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbing() { - return probing; - } - - /** - * Sets the value of the probing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbing(String value) { - this.probing = value; - } - - /** - * Gets the value of the minActiveServers property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMinActiveServers() { - return minActiveServers; - } - - /** - * Sets the value of the minActiveServers property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMinActiveServers(String value) { - this.minActiveServers = value; - } - - /** - * Gets the value of the maxActiveServers property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxActiveServers() { - return maxActiveServers; - } - - /** - * Sets the value of the maxActiveServers property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxActiveServers(String value) { - this.maxActiveServers = value; - } - - /** - * Gets the value of the responseMethod property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResponseMethod() { - return responseMethod; - } - - /** - * Sets the value of the responseMethod property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResponseMethod(String value) { - this.responseMethod = value; - } - - /** - * Gets the value of the maxResponse property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMaxResponse() { - return maxResponse; - } - - /** - * Sets the value of the maxResponse property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMaxResponse(String value) { - this.maxResponse = 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 configured property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConfigured() { - return configured; - } - - /** - * Sets the value of the configured property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConfigured(String value) { - this.configured = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDefinitions.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDefinitions.java deleted file mode 100644 index 9eb622f5a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDefinitions.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolDefinitions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolDefinitions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="monitoredRDPool" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPool" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolDefinitions", propOrder = { - "monitoredRDPool" -}) -public class PoolDefinitions { - - @XmlElement(required = true) - protected List monitoredRDPool; - - /** - * Gets the value of the monitoredRDPool property. - * - *

- * 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 set method for the monitoredRDPool property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getMonitoredRDPool().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link MonitoredRDPool } - * - * - */ - public List getMonitoredRDPool() { - if (monitoredRDPool == null) { - monitoredRDPool = new ArrayList(); - } - return this.monitoredRDPool; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDetails.java deleted file mode 100644 index 420f82054..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDetails.java +++ /dev/null @@ -1,97 +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; - - -/** - *

Java class for PoolDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Pool" type="{http://schema.ultraservice.neustar.com/v01/}Pool"/>
- *         <element name="PoolConfigurationDetails" type="{http://schema.ultraservice.neustar.com/v01/}PoolConfigurationDetails" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolDetails", propOrder = { - "pool", - "poolConfigurationDetails" -}) -public class PoolDetails { - - @XmlElement(name = "Pool", required = true, nillable = true) - protected Pool pool; - @XmlElement(name = "PoolConfigurationDetails", nillable = true) - protected List poolConfigurationDetails; - - /** - * Gets the value of the pool property. - * - * @return - * possible object is - * {@link Pool } - * - */ - public Pool getPool() { - return pool; - } - - /** - * Sets the value of the pool property. - * - * @param value - * allowed object is - * {@link Pool } - * - */ - public void setPool(Pool value) { - this.pool = value; - } - - /** - * Gets the value of the poolConfigurationDetails property. - * - *

- * 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 set method for the poolConfigurationDetails property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolConfigurationDetails().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolConfigurationDetails } - * - * - */ - public List getPoolConfigurationDetails() { - if (poolConfigurationDetails == null) { - poolConfigurationDetails = new ArrayList(); - } - return this.poolConfigurationDetails; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDetailsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDetailsList.java deleted file mode 100644 index b5a81c868..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolDetailsList.java +++ /dev/null @@ -1,126 +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; - - -/** - *

Java class for PoolDetailsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolDetailsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PoolDetails" type="{http://schema.ultraservice.neustar.com/v01/}PoolDetails" maxOccurs="unbounded"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolDetailsList", propOrder = { - "poolDetails", - "total", - "offset", - "count" -}) -public class PoolDetailsList { - - @XmlElement(name = "PoolDetails", required = true) - protected List poolDetails; - protected int total; - protected int offset; - protected int count; - - /** - * Gets the value of the poolDetails property. - * - *

- * 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 set method for the poolDetails property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolDetails().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolDetails } - * - * - */ - public List getPoolDetails() { - if (poolDetails == null) { - poolDetails = new ArrayList(); - } - return this.poolDetails; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolId.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolId.java deleted file mode 100644 index 61fd44713..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolId.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolId complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolId">
- *   <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolId", propOrder = { - "poolName" -}) -public class PoolId { - - @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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolIndexes.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolIndexes.java deleted file mode 100644 index cefaca07a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolIndexes.java +++ /dev/null @@ -1,50 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for poolIndexes. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="poolIndexes">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="NAME"/>
- *     <enumeration value="TYPE"/>
- *     <enumeration value="DESCRIPTION"/>
- *     <enumeration value="RECORDSCOUNT"/>
- *     <enumeration value="RESPONSEMETHOD"/>
- *     <enumeration value="REQUEST"/>
- *     <enumeration value="LBPOOLTYPE"/>
- *     <enumeration value="STATE"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "poolIndexes") -@XmlEnum -public enum PoolIndexes { - - NAME, - TYPE, - DESCRIPTION, - RECORDSCOUNT, - RESPONSEMETHOD, - REQUEST, - LBPOOLTYPE, - STATE; - - public String value() { - return name(); - } - - public static PoolIndexes fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolKey.java deleted file mode 100644 index 1c33ee9b6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolKey">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolKey", propOrder = { - "hostName", - "poolName" -}) -public class PoolKey { - - @XmlElement(required = true) - protected String hostName; - @XmlElement(required = true) - protected String poolName; - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolListParams.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolListParams.java deleted file mode 100644 index 7ed1ed09d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolListParams.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for PoolListParams complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolListParams">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="sortBy" type="{http://schema.ultraservice.neustar.com/v01/}poolIndexes" minOccurs="0"/>
- *         <element name="sortOrder" type="{http://schema.ultraservice.neustar.com/v01/}sortOrder" minOccurs="0"/>
- *         <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="limit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolListParams", propOrder = { - "sortBy", - "sortOrder", - "offset", - "limit" -}) -public class PoolListParams { - - protected PoolIndexes sortBy; - protected SortOrder sortOrder; - protected Integer offset; - protected Integer limit; - - /** - * Gets the value of the sortBy property. - * - * @return - * possible object is - * {@link PoolIndexes } - * - */ - public PoolIndexes getSortBy() { - return sortBy; - } - - /** - * Sets the value of the sortBy property. - * - * @param value - * allowed object is - * {@link PoolIndexes } - * - */ - public void setSortBy(PoolIndexes value) { - this.sortBy = value; - } - - /** - * Gets the value of the sortOrder property. - * - * @return - * possible object is - * {@link SortOrder } - * - */ - public SortOrder getSortOrder() { - return sortOrder; - } - - /** - * Sets the value of the sortOrder property. - * - * @param value - * allowed object is - * {@link SortOrder } - * - */ - public void setSortOrder(SortOrder value) { - this.sortOrder = value; - } - - /** - * Gets the value of the offset property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Sets the value of the offset property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Gets the value of the limit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLimit() { - return limit; - } - - /** - * Sets the value of the limit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLimit(Integer value) { - this.limit = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolProbeId.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolProbeId.java deleted file mode 100644 index 21f6a1c46..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolProbeId.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolProbeId complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolProbeId">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="probeDefinitionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolProbeId", propOrder = { - "poolName", - "probeDefinitionName" -}) -public class PoolProbeId { - - @XmlElement(required = true) - protected String poolName; - @XmlElement(required = true) - protected String probeDefinitionName; - - /** - * 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 probeDefinitionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeDefinitionName() { - return probeDefinitionName; - } - - /** - * Sets the value of the probeDefinitionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeDefinitionName(String value) { - this.probeDefinitionName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecord.java deleted file mode 100644 index 567c2d75d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecord.java +++ /dev/null @@ -1,298 +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; - - -/** - *

Java class for PoolRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Record" type="{http://schema.ultraservice.neustar.com/v01/}Record"/>
- *       </sequence>
- *       <attribute name="hostName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="configurationName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="weight" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="allFail" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="forcedState" use="required" type="{http://schema.ultraservice.neustar.com/v01/}ForcedState" />
- *       <attribute name="recordState" type="{http://schema.ultraservice.neustar.com/v01/}RecordState" />
- *       <attribute name="probesEnabled" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="recordStatus" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecord", propOrder = { - "record" -}) -public class PoolRecord { - - @XmlElement(name = "Record", required = true) - protected Record record; - @XmlAttribute(name = "hostName", required = true) - protected String hostName; - @XmlAttribute(name = "configurationName") - protected String configurationName; - @XmlAttribute(name = "description") - protected String description; - @XmlAttribute(name = "weight") - protected Integer weight; - @XmlAttribute(name = "allFail") - protected Boolean allFail; - @XmlAttribute(name = "forcedState", required = true) - protected ForcedState forcedState; - @XmlAttribute(name = "recordState") - protected RecordState recordState; - @XmlAttribute(name = "probesEnabled", required = true) - protected boolean probesEnabled; - @XmlAttribute(name = "recordStatus") - protected String recordStatus; - - /** - * Gets the value of the record property. - * - * @return - * possible object is - * {@link Record } - * - */ - public Record getRecord() { - return record; - } - - /** - * Sets the value of the record property. - * - * @param value - * allowed object is - * {@link Record } - * - */ - public void setRecord(Record value) { - this.record = 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; - } - - /** - * 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; - } - - /** - * 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 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; - } - - /** - * 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 recordState property. - * - * @return - * possible object is - * {@link RecordState } - * - */ - public RecordState getRecordState() { - return recordState; - } - - /** - * Sets the value of the recordState property. - * - * @param value - * allowed object is - * {@link RecordState } - * - */ - public void setRecordState(RecordState value) { - this.recordState = 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 recordStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordStatus() { - return recordStatus; - } - - /** - * Sets the value of the recordStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordStatus(String value) { - this.recordStatus = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordData.java deleted file mode 100644 index 702b0800b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordData.java +++ /dev/null @@ -1,357 +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; - - -/** - *

Java class for PoolRecordData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="subPoolId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="poolRecordID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="poolId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="pointsTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="weight" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="priority" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recordType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="forceAnswer" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="probing" 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="serving" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordData") -public class PoolRecordData { - - @XmlAttribute(name = "subPoolId") - protected String subPoolId; - @XmlAttribute(name = "poolRecordID", required = true) - protected String poolRecordID; - @XmlAttribute(name = "poolId", required = true) - protected String poolId; - @XmlAttribute(name = "pointsTo", required = true) - protected String pointsTo; - @XmlAttribute(name = "weight") - protected String weight; - @XmlAttribute(name = "priority", required = true) - protected String priority; - @XmlAttribute(name = "recordType", required = true) - protected String recordType; - @XmlAttribute(name = "forceAnswer", required = true) - protected String forceAnswer; - @XmlAttribute(name = "probing", required = true) - protected String probing; - @XmlAttribute(name = "status", required = true) - protected String status; - @XmlAttribute(name = "serving", required = true) - protected String serving; - @XmlAttribute(name = "description", required = true) - protected String description; - - /** - * Gets the value of the subPoolId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSubPoolId() { - return subPoolId; - } - - /** - * Sets the value of the subPoolId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSubPoolId(String value) { - this.subPoolId = value; - } - - /** - * Gets the value of the poolRecordID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolRecordID() { - return poolRecordID; - } - - /** - * Sets the value of the poolRecordID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolRecordID(String value) { - this.poolRecordID = value; - } - - /** - * Gets the value of the poolId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolId() { - return poolId; - } - - /** - * Sets the value of the poolId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolId(String value) { - this.poolId = value; - } - - /** - * 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; - } - - /** - * Gets the value of the weight property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWeight() { - return weight; - } - - /** - * Sets the value of the weight property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWeight(String value) { - this.weight = value; - } - - /** - * Gets the value of the priority property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPriority() { - return priority; - } - - /** - * Sets the value of the priority property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPriority(String value) { - this.priority = value; - } - - /** - * Gets the value of the recordType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordType() { - return recordType; - } - - /** - * Sets the value of the recordType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordType(String value) { - this.recordType = value; - } - - /** - * Gets the value of the forceAnswer property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getForceAnswer() { - return forceAnswer; - } - - /** - * Sets the value of the forceAnswer property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setForceAnswer(String value) { - this.forceAnswer = value; - } - - /** - * Gets the value of the probing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbing() { - return probing; - } - - /** - * Sets the value of the probing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbing(String value) { - this.probing = 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 serving property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServing() { - return serving; - } - - /** - * Sets the value of the serving property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServing(String value) { - this.serving = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordId.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordId.java deleted file mode 100644 index 668c7d6b5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordId.java +++ /dev/null @@ -1,118 +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; - - -/** - *

Java class for PoolRecordId complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordId">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="poolRecordType" type="{http://schema.ultraservice.neustar.com/v01/}RecordType"/>
- *         <element name="poolRecordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordId", propOrder = { - "poolName", - "poolRecordType", - "poolRecordValue" -}) -public class PoolRecordId { - - @XmlElement(required = true) - protected String poolName; - @XmlElement(required = true) - protected RecordType poolRecordType; - @XmlElement(required = true) - protected String poolRecordValue; - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordListParams.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordListParams.java deleted file mode 100644 index 22ea9256b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordListParams.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for PoolRecordListParams complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordListParams">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="sortOrder" type="{http://schema.ultraservice.neustar.com/v01/}sortOrder" minOccurs="0"/>
- *         <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="limit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordListParams", propOrder = { - "sortOrder", - "offset", - "limit" -}) -public class PoolRecordListParams { - - protected SortOrder sortOrder; - protected Integer offset; - protected Integer limit; - - /** - * Gets the value of the sortOrder property. - * - * @return - * possible object is - * {@link SortOrder } - * - */ - public SortOrder getSortOrder() { - return sortOrder; - } - - /** - * Sets the value of the sortOrder property. - * - * @param value - * allowed object is - * {@link SortOrder } - * - */ - public void setSortOrder(SortOrder value) { - this.sortOrder = value; - } - - /** - * Gets the value of the offset property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Sets the value of the offset property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Gets the value of the limit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLimit() { - return limit; - } - - /** - * Sets the value of the limit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLimit(Integer value) { - this.limit = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordProbeId.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordProbeId.java deleted file mode 100644 index 9eb6778ad..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordProbeId.java +++ /dev/null @@ -1,118 +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; - - -/** - *

Java class for PoolRecordProbeId complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordProbeId">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="poolName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="poolRecordValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="probeDefinitionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordProbeId", propOrder = { - "poolName", - "poolRecordValue", - "probeDefinitionName" -}) -public class PoolRecordProbeId { - - @XmlElement(required = true) - protected String poolName; - @XmlElement(required = true) - protected String poolRecordValue; - @XmlElement(required = true) - protected String probeDefinitionName; - - /** - * 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 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 probeDefinitionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeDefinitionName() { - return probeDefinitionName; - } - - /** - * Sets the value of the probeDefinitionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeDefinitionName(String value) { - this.probeDefinitionName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordSpecData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordSpecData.java deleted file mode 100644 index 65d067dff..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordSpecData.java +++ /dev/null @@ -1,295 +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; - - -/** - *

Java class for PoolRecordSpecData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordSpecData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="poolRecordID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="poolId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recordState" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="probing" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="allFail" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="weight" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failOverDelay" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
- *       <attribute name="threshold" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ttl" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordSpecData") -public class PoolRecordSpecData { - - @XmlAttribute(name = "poolRecordID", required = true) - protected String poolRecordID; - @XmlAttribute(name = "poolId", required = true) - protected String poolId; - @XmlAttribute(name = "description", required = true) - protected String description; - @XmlAttribute(name = "recordState", required = true) - protected String recordState; - @XmlAttribute(name = "probing", required = true) - protected String probing; - @XmlAttribute(name = "allFail", required = true) - protected String allFail; - @XmlAttribute(name = "weight", required = true) - protected String weight; - @XmlAttribute(name = "failOverDelay", required = true) - protected long failOverDelay; - @XmlAttribute(name = "threshold", required = true) - protected String threshold; - @XmlAttribute(name = "ttl", required = true) - protected String ttl; - - /** - * Gets the value of the poolRecordID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolRecordID() { - return poolRecordID; - } - - /** - * Sets the value of the poolRecordID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolRecordID(String value) { - this.poolRecordID = value; - } - - /** - * Gets the value of the poolId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolId() { - return poolId; - } - - /** - * Sets the value of the poolId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolId(String value) { - this.poolId = 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 recordState property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordState() { - return recordState; - } - - /** - * Sets the value of the recordState property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordState(String value) { - this.recordState = value; - } - - /** - * Gets the value of the probing property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbing() { - return probing; - } - - /** - * Sets the value of the probing property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbing(String value) { - this.probing = value; - } - - /** - * Gets the value of the allFail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAllFail() { - return allFail; - } - - /** - * Sets the value of the allFail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAllFail(String value) { - this.allFail = value; - } - - /** - * Gets the value of the weight property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWeight() { - return weight; - } - - /** - * Sets the value of the weight property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWeight(String value) { - this.weight = value; - } - - /** - * Gets the value of the failOverDelay property. - * - */ - public long getFailOverDelay() { - return failOverDelay; - } - - /** - * Sets the value of the failOverDelay property. - * - */ - public void setFailOverDelay(long value) { - this.failOverDelay = value; - } - - /** - * Gets the value of the threshold property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * Sets the value of the threshold property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTtl() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTtl(String value) { - this.ttl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordType.java deleted file mode 100644 index 1a37596ce..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for PoolRecordType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="PoolRecordType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="A"/>
- *     <enumeration value="AAAA"/>
- *     <enumeration value="SUBPOOL"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "PoolRecordType") -@XmlEnum -public enum PoolRecordType { - - A, - AAAA, - SUBPOOL; - - public String value() { - return name(); - } - - public static PoolRecordType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordUpdate.java deleted file mode 100644 index 84ab8ec94..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordUpdate.java +++ /dev/null @@ -1,222 +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; - - -/** - *

Java class for PoolRecordUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="allFail" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="poolRecordType" type="{http://schema.ultraservice.neustar.com/v01/}RecordType" minOccurs="0"/>
- *         <element name="poolRecordValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="forcedState" type="{http://schema.ultraservice.neustar.com/v01/}ForcedState" minOccurs="0"/>
- *         <element name="probesEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *         <element name="weight" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordUpdate", propOrder = { - "allFail", - "description", - "poolRecordType", - "poolRecordValue", - "forcedState", - "probesEnabled", - "weight" -}) -public class PoolRecordUpdate { - - protected Boolean allFail; - protected String description; - protected RecordType poolRecordType; - protected String poolRecordValue; - protected ForcedState forcedState; - protected Boolean probesEnabled; - protected Integer weight; - - /** - * 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; - } - - /** - * 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. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isProbesEnabled() { - return probesEnabled; - } - - /** - * Sets the value of the probesEnabled property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordsList.java deleted file mode 100644 index 6f582d966..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolRecordsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolRecordsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolRecordsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="PoolRecordData" type="{http://schema.ultraservice.neustar.com/v01/}PoolRecordData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolRecordsList", propOrder = { - "poolRecordData" -}) -public class PoolRecordsList { - - @XmlElement(name = "PoolRecordData", required = true) - protected List poolRecordData; - - /** - * Gets the value of the poolRecordData property. - * - *

- * 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 set method for the poolRecordData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolRecordData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PoolRecordData } - * - * - */ - public List getPoolRecordData() { - if (poolRecordData == null) { - poolRecordData = new ArrayList(); - } - return this.poolRecordData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolToAcctGroupConversionDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolToAcctGroupConversionDetails.java deleted file mode 100644 index 9accf3bbe..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolToAcctGroupConversionDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolToAcctGroupConversionDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolToAcctGroupConversionDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="poolGroupId" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolToAcctGroupConversionDetails") -public class PoolToAcctGroupConversionDetails { - - @XmlAttribute(name = "poolGroupId", required = true) - protected String poolGroupId; - @XmlAttribute(name = "newGroupName", required = true) - protected String newGroupName; - - /** - * Gets the value of the poolGroupId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolGroupId() { - return poolGroupId; - } - - /** - * Sets the value of the poolGroupId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolGroupId(String value) { - this.poolGroupId = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolUpdate.java deleted file mode 100644 index c00fe2ca8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PoolUpdate.java +++ /dev/null @@ -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; - - -/** - *

Java class for PoolUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PoolUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PoolUpdate", propOrder = { - "description" -}) -public class PoolUpdate { - - protected String description; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecord.java deleted file mode 100644 index 33d3fd676..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for PrioritizedRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PrioritizedRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="record" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="type" use="required" type="{http://schema.ultraservice.neustar.com/v01/}RecordType" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PrioritizedRecord") -public class PrioritizedRecord { - - @XmlAttribute(name = "record", required = true) - protected String record; - @XmlAttribute(name = "type", required = true) - protected RecordType type; - - /** - * Gets the value of the record property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecord() { - return record; - } - - /** - * Sets the value of the record property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecord(String value) { - this.record = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link RecordType } - * - */ - public RecordType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link RecordType } - * - */ - public void setType(RecordType value) { - this.type = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecordList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecordList.java deleted file mode 100644 index 960b5641c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecordList.java +++ /dev/null @@ -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; - - -/** - *

Java class for PrioritizedRecordList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PrioritizedRecordList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="prioritizedRecord" type="{http://schema.ultraservice.neustar.com/v01/}PrioritizedRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PrioritizedRecordList", propOrder = { - "prioritizedRecord" -}) -public class PrioritizedRecordList { - - @XmlElement(required = true) - protected List prioritizedRecord; - - /** - * Gets the value of the prioritizedRecord property. - * - *

- * 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 set method for the prioritizedRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPrioritizedRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link PrioritizedRecord } - * - * - */ - public List getPrioritizedRecord() { - if (prioritizedRecord == null) { - prioritizedRecord = new ArrayList(); - } - return this.prioritizedRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecordsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecordsList.java deleted file mode 100644 index 5b9df04cc..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/PrioritizedRecordsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for PrioritizedRecordsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="PrioritizedRecordsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="prioritizedRecord" type="{http://schema.ultraservice.neustar.com/v01/}AlertPrioritizedRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "PrioritizedRecordsList", propOrder = { - "prioritizedRecord" -}) -public class PrioritizedRecordsList { - - @XmlElement(required = true) - protected List prioritizedRecord; - - /** - * Gets the value of the prioritizedRecord property. - * - *

- * 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 set method for the prioritizedRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPrioritizedRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link AlertPrioritizedRecord } - * - * - */ - public List getPrioritizedRecord() { - if (prioritizedRecord == null) { - prioritizedRecord = new ArrayList(); - } - return this.prioritizedRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Probe.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Probe.java deleted file mode 100644 index 2316c56dc..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Probe.java +++ /dev/null @@ -1,109 +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; - - -/** - *

Java class for Probe complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Probe">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="probeDefinitionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="regionThreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="regions" type="{http://schema.ultraservice.neustar.com/v01/}ProbeRegions"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Probe", propOrder = { - "probeDefinitionName", - "regionThreshold", - "regions" -}) -public class Probe { - - @XmlElement(required = true) - protected String probeDefinitionName; - protected int regionThreshold; - @XmlElement(required = true) - protected ProbeRegions regions; - - /** - * Gets the value of the probeDefinitionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeDefinitionName() { - return probeDefinitionName; - } - - /** - * Sets the value of the probeDefinitionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeDefinitionName(String value) { - this.probeDefinitionName = 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. - * - * @return - * possible object is - * {@link ProbeRegions } - * - */ - public ProbeRegions getRegions() { - return regions; - } - - /** - * Sets the value of the regions property. - * - * @param value - * allowed object is - * {@link ProbeRegions } - * - */ - public void setRegions(ProbeRegions value) { - this.regions = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeAlertsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeAlertsData.java deleted file mode 100644 index 3d564245d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeAlertsData.java +++ /dev/null @@ -1,222 +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; - - -/** - *

Java class for ProbeAlertsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeAlertsData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="IpAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ProbeType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ProbeStatus" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="AlertDate" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="FailOverOccured" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolDName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Status" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeAlertsData") -public class ProbeAlertsData { - - @XmlAttribute(name = "IpAddress") - protected String ipAddress; - @XmlAttribute(name = "ProbeType") - protected String probeType; - @XmlAttribute(name = "ProbeStatus") - protected String probeStatus; - @XmlAttribute(name = "AlertDate") - protected String alertDate; - @XmlAttribute(name = "FailOverOccured") - protected String failOverOccured; - @XmlAttribute(name = "PoolDName") - protected String poolDName; - @XmlAttribute(name = "Status") - protected String status; - - /** - * 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 probeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeType() { - return probeType; - } - - /** - * Sets the value of the probeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeType(String value) { - this.probeType = value; - } - - /** - * Gets the value of the probeStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeStatus() { - return probeStatus; - } - - /** - * Sets the value of the probeStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeStatus(String value) { - this.probeStatus = value; - } - - /** - * Gets the value of the alertDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAlertDate() { - return alertDate; - } - - /** - * Sets the value of the alertDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAlertDate(String value) { - this.alertDate = value; - } - - /** - * Gets the value of the failOverOccured property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailOverOccured() { - return failOverOccured; - } - - /** - * Sets the value of the failOverOccured property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailOverOccured(String value) { - this.failOverOccured = value; - } - - /** - * Gets the value of the poolDName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolDName() { - return poolDName; - } - - /** - * Sets the value of the poolDName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolDName(String value) { - this.poolDName = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeAlertsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeAlertsList.java deleted file mode 100644 index c0b09246b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeAlertsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeAlertsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeAlertsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ProbeAlertsData" type="{http://schema.ultraservice.neustar.com/v01/}ProbeAlertsData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeAlertsList", propOrder = { - "probeAlertsData" -}) -public class ProbeAlertsList { - - @XmlElement(name = "ProbeAlertsData", required = true) - protected List probeAlertsData; - - /** - * Gets the value of the probeAlertsData property. - * - *

- * 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 set method for the probeAlertsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProbeAlertsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProbeAlertsData } - * - * - */ - public List getProbeAlertsData() { - if (probeAlertsData == null) { - probeAlertsData = new ArrayList(); - } - return this.probeAlertsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeData.java deleted file mode 100644 index 9d7cbb31e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeData.java +++ /dev/null @@ -1,411 +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; - - -/** - *

Java class for ProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="PoolProbeId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PoolId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SbprecordId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Active" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ProbeDataType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ProbeID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ProbeName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Bleid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ProbeWeight" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="probedata" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="probefailspecs" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="agentfailspecs" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="threshold" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="interval" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeData") -public class ProbeData { - - @XmlAttribute(name = "PoolProbeId", required = true) - protected String poolProbeId; - @XmlAttribute(name = "PoolId", required = true) - protected String poolId; - @XmlAttribute(name = "SbprecordId", required = true) - protected String sbprecordId; - @XmlAttribute(name = "Active", required = true) - protected String active; - @XmlAttribute(name = "ProbeDataType", required = true) - protected String probeDataType; - @XmlAttribute(name = "ProbeID", required = true) - protected String probeID; - @XmlAttribute(name = "ProbeName", required = true) - protected String probeName; - @XmlAttribute(name = "Bleid", required = true) - protected String bleid; - @XmlAttribute(name = "ProbeWeight", required = true) - protected String probeWeight; - @XmlAttribute(name = "probedata", required = true) - protected String probedata; - @XmlAttribute(name = "probefailspecs", required = true) - protected String probefailspecs; - @XmlAttribute(name = "agentfailspecs", required = true) - protected String agentfailspecs; - @XmlAttribute(name = "threshold", required = true) - protected String threshold; - @XmlAttribute(name = "interval", required = true) - protected String interval; - - /** - * Gets the value of the poolProbeId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolProbeId() { - return poolProbeId; - } - - /** - * Sets the value of the poolProbeId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolProbeId(String value) { - this.poolProbeId = value; - } - - /** - * Gets the value of the poolId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPoolId() { - return poolId; - } - - /** - * Sets the value of the poolId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPoolId(String value) { - this.poolId = value; - } - - /** - * Gets the value of the sbprecordId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSbprecordId() { - return sbprecordId; - } - - /** - * Sets the value of the sbprecordId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSbprecordId(String value) { - this.sbprecordId = value; - } - - /** - * Gets the value of the active property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getActive() { - return active; - } - - /** - * Sets the value of the active property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setActive(String value) { - this.active = value; - } - - /** - * Gets the value of the probeDataType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeDataType() { - return probeDataType; - } - - /** - * Sets the value of the probeDataType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeDataType(String value) { - this.probeDataType = value; - } - - /** - * Gets the value of the probeID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeID() { - return probeID; - } - - /** - * Sets the value of the probeID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeID(String value) { - this.probeID = value; - } - - /** - * 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 bleid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getBleid() { - return bleid; - } - - /** - * Sets the value of the bleid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setBleid(String value) { - this.bleid = value; - } - - /** - * Gets the value of the probeWeight property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbeWeight() { - return probeWeight; - } - - /** - * Sets the value of the probeWeight property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbeWeight(String value) { - this.probeWeight = value; - } - - /** - * Gets the value of the probedata property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbedata() { - return probedata; - } - - /** - * Sets the value of the probedata property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbedata(String value) { - this.probedata = value; - } - - /** - * Gets the value of the probefailspecs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getProbefailspecs() { - return probefailspecs; - } - - /** - * Sets the value of the probefailspecs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setProbefailspecs(String value) { - this.probefailspecs = value; - } - - /** - * Gets the value of the agentfailspecs property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAgentfailspecs() { - return agentfailspecs; - } - - /** - * Sets the value of the agentfailspecs property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAgentfailspecs(String value) { - this.agentfailspecs = value; - } - - /** - * Gets the value of the threshold property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getThreshold() { - return threshold; - } - - /** - * Sets the value of the threshold property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setThreshold(String value) { - this.threshold = value; - } - - /** - * Gets the value of the interval property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInterval() { - return interval; - } - - /** - * Sets the value of the interval property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInterval(String value) { - this.interval = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinition.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinition.java deleted file mode 100644 index f022539c7..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinition.java +++ /dev/null @@ -1,109 +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; - - -/** - *

Java class for ProbeDefinition complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeDefinition">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="interval" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="transactions" type="{http://schema.ultraservice.neustar.com/v01/}ProbeDefinitionTransactions"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeDefinition", propOrder = { - "name", - "interval", - "transactions" -}) -public class ProbeDefinition { - - @XmlElement(required = true) - protected String name; - protected int interval; - @XmlElement(required = true) - protected ProbeDefinitionTransactions transactions; - - /** - * 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 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 transactions property. - * - * @return - * possible object is - * {@link ProbeDefinitionTransactions } - * - */ - public ProbeDefinitionTransactions getTransactions() { - return transactions; - } - - /** - * Sets the value of the transactions property. - * - * @param value - * allowed object is - * {@link ProbeDefinitionTransactions } - * - */ - public void setTransactions(ProbeDefinitionTransactions value) { - this.transactions = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionHttpTransactions.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionHttpTransactions.java deleted file mode 100644 index c936f3131..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionHttpTransactions.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeDefinitionHttpTransactions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeDefinitionHttpTransactions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpTransaction" type="{http://schema.ultraservice.neustar.com/v01/}HTTPTransaction" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeDefinitionHttpTransactions", propOrder = { - "httpTransaction" -}) -public class ProbeDefinitionHttpTransactions { - - @XmlElement(required = true) - protected List httpTransaction; - - /** - * Gets the value of the httpTransaction property. - * - *

- * 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 set method for the httpTransaction property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHttpTransaction().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HTTPTransaction } - * - * - */ - public List getHttpTransaction() { - if (httpTransaction == null) { - httpTransaction = new ArrayList(); - } - return this.httpTransaction; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionId.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionId.java deleted file mode 100644 index c1ec27673..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionId.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeDefinitionId complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeDefinitionId">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="accountName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeDefinitionId", propOrder = { - "accountName", - "name" -}) -public class ProbeDefinitionId { - - @XmlElement(required = true) - protected String accountName; - @XmlElement(required = true) - protected String name; - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionList.java deleted file mode 100644 index bb9225b6e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeDefinitionList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeDefinitionList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="probeDefinition" type="{http://schema.ultraservice.neustar.com/v01/}ProbeDefinition" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeDefinitionList", propOrder = { - "probeDefinition" -}) -public class ProbeDefinitionList { - - @XmlElement(required = true) - protected List probeDefinition; - - /** - * Gets the value of the probeDefinition property. - * - *

- * 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 set method for the probeDefinition property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProbeDefinition().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProbeDefinition } - * - * - */ - public List getProbeDefinition() { - if (probeDefinition == null) { - probeDefinition = new ArrayList(); - } - return this.probeDefinition; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionTransactions.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionTransactions.java deleted file mode 100644 index 9c2d57da4..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeDefinitionTransactions.java +++ /dev/null @@ -1,222 +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; - - -/** - *

Java class for ProbeDefinitionTransactions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeDefinitionTransactions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="httpTransactions" type="{http://schema.ultraservice.neustar.com/v01/}ProbeDefinitionHttpTransactions" minOccurs="0"/>
- *         <element name="dnsTransaction" type="{http://schema.ultraservice.neustar.com/v01/}DNSTransaction" minOccurs="0"/>
- *         <element name="pingTransaction" type="{http://schema.ultraservice.neustar.com/v01/}PINGTransaction" minOccurs="0"/>
- *         <element name="tcpTransaction" type="{http://schema.ultraservice.neustar.com/v01/}TCPTransaction" minOccurs="0"/>
- *         <element name="ftpTransaction" type="{http://schema.ultraservice.neustar.com/v01/}FTPTransaction" minOccurs="0"/>
- *         <element name="smtpTransaction" type="{http://schema.ultraservice.neustar.com/v01/}SMTPTransaction" minOccurs="0"/>
- *         <element name="smtp2Transaction" type="{http://schema.ultraservice.neustar.com/v01/}SMTP2Transaction" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeDefinitionTransactions", propOrder = { - "httpTransactions", - "dnsTransaction", - "pingTransaction", - "tcpTransaction", - "ftpTransaction", - "smtpTransaction", - "smtp2Transaction" -}) -public class ProbeDefinitionTransactions { - - protected ProbeDefinitionHttpTransactions httpTransactions; - protected DNSTransaction dnsTransaction; - protected PINGTransaction pingTransaction; - protected TCPTransaction tcpTransaction; - protected FTPTransaction ftpTransaction; - protected SMTPTransaction smtpTransaction; - protected SMTP2Transaction smtp2Transaction; - - /** - * Gets the value of the httpTransactions property. - * - * @return - * possible object is - * {@link ProbeDefinitionHttpTransactions } - * - */ - public ProbeDefinitionHttpTransactions getHttpTransactions() { - return httpTransactions; - } - - /** - * Sets the value of the httpTransactions property. - * - * @param value - * allowed object is - * {@link ProbeDefinitionHttpTransactions } - * - */ - public void setHttpTransactions(ProbeDefinitionHttpTransactions value) { - this.httpTransactions = value; - } - - /** - * Gets the value of the dnsTransaction property. - * - * @return - * possible object is - * {@link DNSTransaction } - * - */ - public DNSTransaction getDnsTransaction() { - return dnsTransaction; - } - - /** - * Sets the value of the dnsTransaction property. - * - * @param value - * allowed object is - * {@link DNSTransaction } - * - */ - public void setDnsTransaction(DNSTransaction value) { - this.dnsTransaction = value; - } - - /** - * Gets the value of the pingTransaction property. - * - * @return - * possible object is - * {@link PINGTransaction } - * - */ - public PINGTransaction getPingTransaction() { - return pingTransaction; - } - - /** - * Sets the value of the pingTransaction property. - * - * @param value - * allowed object is - * {@link PINGTransaction } - * - */ - public void setPingTransaction(PINGTransaction value) { - this.pingTransaction = value; - } - - /** - * Gets the value of the tcpTransaction property. - * - * @return - * possible object is - * {@link TCPTransaction } - * - */ - public TCPTransaction getTcpTransaction() { - return tcpTransaction; - } - - /** - * Sets the value of the tcpTransaction property. - * - * @param value - * allowed object is - * {@link TCPTransaction } - * - */ - public void setTcpTransaction(TCPTransaction value) { - this.tcpTransaction = value; - } - - /** - * Gets the value of the ftpTransaction property. - * - * @return - * possible object is - * {@link FTPTransaction } - * - */ - public FTPTransaction getFtpTransaction() { - return ftpTransaction; - } - - /** - * Sets the value of the ftpTransaction property. - * - * @param value - * allowed object is - * {@link FTPTransaction } - * - */ - public void setFtpTransaction(FTPTransaction value) { - this.ftpTransaction = value; - } - - /** - * Gets the value of the smtpTransaction property. - * - * @return - * possible object is - * {@link SMTPTransaction } - * - */ - public SMTPTransaction getSmtpTransaction() { - return smtpTransaction; - } - - /** - * Sets the value of the smtpTransaction property. - * - * @param value - * allowed object is - * {@link SMTPTransaction } - * - */ - public void setSmtpTransaction(SMTPTransaction value) { - this.smtpTransaction = value; - } - - /** - * Gets the value of the smtp2Transaction property. - * - * @return - * possible object is - * {@link SMTP2Transaction } - * - */ - public SMTP2Transaction getSmtp2Transaction() { - return smtp2Transaction; - } - - /** - * Sets the value of the smtp2Transaction property. - * - * @param value - * allowed object is - * {@link SMTP2Transaction } - * - */ - public void setSmtp2Transaction(SMTP2Transaction value) { - this.smtp2Transaction = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeIndexes.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeIndexes.java deleted file mode 100644 index 06c58fb18..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeIndexes.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for probeIndexes. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="probeIndexes">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="PROBE_LEVEL"/>
- *     <enumeration value="NAME"/>
- *     <enumeration value="TYPE"/>
- *     <enumeration value="INTERVAL"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "probeIndexes") -@XmlEnum -public enum ProbeIndexes { - - PROBE_LEVEL, - NAME, - TYPE, - INTERVAL; - - public String value() { - return name(); - } - - public static ProbeIndexes fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeInfo.java deleted file mode 100644 index afa77ec3e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeInfo.java +++ /dev/null @@ -1,118 +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; - - -/** - *

Java class for ProbeInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ProbeData" type="{http://schema.ultraservice.neustar.com/v01/}ProbeData"/>
- *         <element name="SBAgentsList" type="{http://schema.ultraservice.neustar.com/v01/}SBAgentsList"/>
- *         <element name="DNSProbeMaster" type="{http://schema.ultraservice.neustar.com/v01/}DNSProbeMaster"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeInfo", propOrder = { - "probeData", - "sbAgentsList", - "dnsProbeMaster" -}) -public class ProbeInfo { - - @XmlElement(name = "ProbeData", required = true) - protected ProbeData probeData; - @XmlElement(name = "SBAgentsList", required = true) - protected SBAgentsList sbAgentsList; - @XmlElement(name = "DNSProbeMaster", required = true) - protected DNSProbeMaster dnsProbeMaster; - - /** - * Gets the value of the probeData property. - * - * @return - * possible object is - * {@link ProbeData } - * - */ - public ProbeData getProbeData() { - return probeData; - } - - /** - * Sets the value of the probeData property. - * - * @param value - * allowed object is - * {@link ProbeData } - * - */ - public void setProbeData(ProbeData value) { - this.probeData = value; - } - - /** - * Gets the value of the sbAgentsList property. - * - * @return - * possible object is - * {@link SBAgentsList } - * - */ - public SBAgentsList getSBAgentsList() { - return sbAgentsList; - } - - /** - * Sets the value of the sbAgentsList property. - * - * @param value - * allowed object is - * {@link SBAgentsList } - * - */ - public void setSBAgentsList(SBAgentsList value) { - this.sbAgentsList = value; - } - - /** - * Gets the value of the dnsProbeMaster property. - * - * @return - * possible object is - * {@link DNSProbeMaster } - * - */ - public DNSProbeMaster getDNSProbeMaster() { - return dnsProbeMaster; - } - - /** - * Sets the value of the dnsProbeMaster property. - * - * @param value - * allowed object is - * {@link DNSProbeMaster } - * - */ - public void setDNSProbeMaster(DNSProbeMaster value) { - this.dnsProbeMaster = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeInfo2.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeInfo2.java deleted file mode 100644 index 5ac49b729..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeInfo2.java +++ /dev/null @@ -1,174 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.JAXBElement; -import javax.xml.bind.annotation.XmlAccessType; -import javax.xml.bind.annotation.XmlAccessorType; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlElementRef; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for probeInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="probeInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="allFailRecord" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolRecordAdd" minOccurs="0"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}MonitoredRDPoolMonitor"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "probeInfo", propOrder = { - "description", - "allFailRecord", - "ttl", - "monitor", - "regionThreshold" -}) -public class ProbeInfo2 { - - protected String description; - protected MonitoredRDPoolRecordAdd allFailRecord; - @XmlElementRef(name = "ttl", namespace = "http://schema.ultraservice.neustar.com/v01/", type = JAXBElement.class) - protected JAXBElement ttl; - @XmlElement(required = true) - protected MonitoredRDPoolMonitor monitor; - @XmlElement(required = true) - protected SimpleFailoverPoolRegionThreshold regionThreshold; - - /** - * 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 allFailRecord property. - * - * @return - * possible object is - * {@link MonitoredRDPoolRecordAdd } - * - */ - public MonitoredRDPoolRecordAdd getAllFailRecord() { - return allFailRecord; - } - - /** - * Sets the value of the allFailRecord property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolRecordAdd } - * - */ - public void setAllFailRecord(MonitoredRDPoolRecordAdd value) { - this.allFailRecord = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link JAXBElement }{@code <}{@link Long }{@code >} - * - */ - public JAXBElement getTtl() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link JAXBElement }{@code <}{@link Long }{@code >} - * - */ - public void setTtl(JAXBElement value) { - this.ttl = value; - } - - /** - * Gets the value of the monitor property. - * - * @return - * possible object is - * {@link MonitoredRDPoolMonitor } - * - */ - public MonitoredRDPoolMonitor getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link MonitoredRDPoolMonitor } - * - */ - public void setMonitor(MonitoredRDPoolMonitor value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeListParams.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeListParams.java deleted file mode 100644 index 69ecdb27f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeListParams.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for ProbeListParams complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeListParams">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="sortBy" type="{http://schema.ultraservice.neustar.com/v01/}probeIndexes" minOccurs="0"/>
- *         <element name="sortOrder" type="{http://schema.ultraservice.neustar.com/v01/}sortOrder" minOccurs="0"/>
- *         <element name="offset" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="limit" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeListParams", propOrder = { - "sortBy", - "sortOrder", - "offset", - "limit" -}) -public class ProbeListParams { - - protected ProbeIndexes sortBy; - protected SortOrder sortOrder; - protected Integer offset; - protected Integer limit; - - /** - * Gets the value of the sortBy property. - * - * @return - * possible object is - * {@link ProbeIndexes } - * - */ - public ProbeIndexes getSortBy() { - return sortBy; - } - - /** - * Sets the value of the sortBy property. - * - * @param value - * allowed object is - * {@link ProbeIndexes } - * - */ - public void setSortBy(ProbeIndexes value) { - this.sortBy = value; - } - - /** - * Gets the value of the sortOrder property. - * - * @return - * possible object is - * {@link SortOrder } - * - */ - public SortOrder getSortOrder() { - return sortOrder; - } - - /** - * Sets the value of the sortOrder property. - * - * @param value - * allowed object is - * {@link SortOrder } - * - */ - public void setSortOrder(SortOrder value) { - this.sortOrder = value; - } - - /** - * Gets the value of the offset property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getOffset() { - return offset; - } - - /** - * Sets the value of the offset property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setOffset(Integer value) { - this.offset = value; - } - - /** - * Gets the value of the limit property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getLimit() { - return limit; - } - - /** - * Sets the value of the limit property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setLimit(Integer value) { - this.limit = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegion.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegion.java deleted file mode 100644 index d7e416fe5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegion.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeRegion complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeRegion">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="Description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeRegion") -public class ProbeRegion { - - @XmlAttribute(name = "Description", required = true) - protected String description; - @XmlAttribute(name = "Name", required = true) - protected String name; - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegionList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegionList.java deleted file mode 100644 index d460bc8e2..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegionList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeRegionList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeRegionList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ProbeRegion" type="{http://schema.ultraservice.neustar.com/v01/}ProbeRegion" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeRegionList", propOrder = { - "probeRegion" -}) -public class ProbeRegionList { - - @XmlElement(name = "ProbeRegion", required = true) - protected List probeRegion; - - /** - * Gets the value of the probeRegion property. - * - *

- * 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 set method for the probeRegion property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProbeRegion().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProbeRegion } - * - * - */ - public List getProbeRegion() { - if (probeRegion == null) { - probeRegion = new ArrayList(); - } - return this.probeRegion; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegions.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegions.java deleted file mode 100644 index d58ae726f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeRegions.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbeRegions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbeRegions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="region" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbeRegions", propOrder = { - "region" -}) -public class ProbeRegions { - - @XmlElement(required = true) - protected List region; - - /** - * Gets the value of the region property. - * - *

- * 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 set method for the region property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRegion().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getRegion() { - if (region == null) { - region = new ArrayList(); - } - return this.region; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeType.java deleted file mode 100644 index 12e920540..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeType.java +++ /dev/null @@ -1,54 +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; - - -/** - *

Java class for probeType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="probeType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="global"/>
- *     <enumeration value="record"/>
- *     <enumeration value="all"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "probeType") -@XmlEnum -public enum ProbeType { - - @XmlEnumValue("global") - GLOBAL("global"), - @XmlEnumValue("record") - RECORD("record"), - @XmlEnumValue("all") - ALL("all"); - private final String value; - - ProbeType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ProbeType fromValue(String v) { - for (ProbeType c: ProbeType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeTypeEnum.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeTypeEnum.java deleted file mode 100644 index f23aaea6e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbeTypeEnum.java +++ /dev/null @@ -1,60 +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; - - -/** - *

Java class for ProbeTypeEnum. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ProbeTypeEnum">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="HTTP"/>
- *     <enumeration value="PING"/>
- *     <enumeration value="FTP"/>
- *     <enumeration value="TCP"/>
- *     <enumeration value="SMTP"/>
- *     <enumeration value="SMTP2"/>
- *     <enumeration value="DNS"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ProbeTypeEnum") -@XmlEnum -public enum ProbeTypeEnum { - - HTTP("HTTP"), - PING("PING"), - FTP("FTP"), - TCP("TCP"), - SMTP("SMTP"), - @XmlEnumValue("SMTP2") - SMTP_2("SMTP2"), - DNS("DNS"); - private final String value; - - ProbeTypeEnum(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ProbeTypeEnum fromValue(String v) { - for (ProbeTypeEnum c: ProbeTypeEnum.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbesList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbesList.java deleted file mode 100644 index b3b649217..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ProbesList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ProbesList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ProbesList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ProbeData" type="{http://schema.ultraservice.neustar.com/v01/}ProbeData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ProbesList", propOrder = { - "probeData" -}) -public class ProbesList { - - @XmlElement(name = "ProbeData", required = true) - protected List probeData; - - /** - * Gets the value of the probeData property. - * - *

- * 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 set method for the probeData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getProbeData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ProbeData } - * - * - */ - public List getProbeData() { - if (probeData == null) { - probeData = new ArrayList(); - } - return this.probeData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Protocol.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Protocol.java deleted file mode 100644 index 7f10fe142..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Protocol.java +++ /dev/null @@ -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; - - -/** - *

Java class for protocol. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="protocol">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="http"/>
- *     <enumeration value="https"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "protocol") -@XmlEnum -public enum Protocol { - - @XmlEnumValue("http") - HTTP("http"), - @XmlEnumValue("https") - HTTPS("https"); - private final String value; - - Protocol(String v) { - value = v; - } - - public String value() { - return value; - } - - public static Protocol fromValue(String v) { - for (Protocol c: Protocol.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RDPoolConversionInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RDPoolConversionInfo.java deleted file mode 100644 index 4d83905ee..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RDPoolConversionInfo.java +++ /dev/null @@ -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; -import com.neustar.ultra.api.webservice.v01.ConvertTypeEnum; - - -/** - *

Java class for rDPoolConversionInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="rDPoolConversionInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="conversionType" type="{http://webservice.api.ultra.neustar.com/v01/}convertTypeEnum"/>
- *         <element name="recordToKeep" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="probeInfo" type="{http://schema.ultraservice.neustar.com/v01/}probeInfo" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "rDPoolConversionInfo", propOrder = { - "zoneName", - "hostName", - "conversionType", - "recordToKeep", - "probeInfo" -}) -public class RDPoolConversionInfo { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected String hostName; - @XmlElement(required = true) - protected ConvertTypeEnum conversionType; - protected String recordToKeep; - protected ProbeInfo2 probeInfo; - - /** - * 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; - } - - /** - * Gets the value of the conversionType property. - * - * @return - * possible object is - * {@link ConvertTypeEnum } - * - */ - public ConvertTypeEnum getConversionType() { - return conversionType; - } - - /** - * Sets the value of the conversionType property. - * - * @param value - * allowed object is - * {@link ConvertTypeEnum } - * - */ - public void setConversionType(ConvertTypeEnum value) { - this.conversionType = value; - } - - /** - * Gets the value of the recordToKeep property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecordToKeep() { - return recordToKeep; - } - - /** - * Sets the value of the recordToKeep property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecordToKeep(String value) { - this.recordToKeep = value; - } - - /** - * Gets the value of the probeInfo property. - * - * @return - * possible object is - * {@link ProbeInfo2 } - * - */ - public ProbeInfo2 getProbeInfo() { - return probeInfo; - } - - /** - * Sets the value of the probeInfo property. - * - * @param value - * allowed object is - * {@link ProbeInfo2 } - * - */ - public void setProbeInfo(ProbeInfo2 value) { - this.probeInfo = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecentActivity.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecentActivity.java deleted file mode 100644 index beff03fef..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecentActivity.java +++ /dev/null @@ -1,168 +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; - - -/** - *

Java class for RecentActivity complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RecentActivity">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="changeObject" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="changeTime" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="changeType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="User" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="auditId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RecentActivity") -public class RecentActivity { - - @XmlAttribute(name = "changeObject", required = true) - protected String changeObject; - @XmlAttribute(name = "changeTime", required = true) - protected String changeTime; - @XmlAttribute(name = "changeType", required = true) - protected String changeType; - @XmlAttribute(name = "User", required = true) - protected String user; - @XmlAttribute(name = "auditId", required = true) - protected String auditId; - - /** - * Gets the value of the changeObject property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangeObject() { - return changeObject; - } - - /** - * Sets the value of the changeObject property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangeObject(String value) { - this.changeObject = value; - } - - /** - * Gets the value of the changeTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangeTime() { - return changeTime; - } - - /** - * Sets the value of the changeTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangeTime(String value) { - this.changeTime = value; - } - - /** - * Gets the value of the changeType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getChangeType() { - return changeType; - } - - /** - * Sets the value of the changeType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setChangeType(String value) { - this.changeType = value; - } - - /** - * Gets the value of the user property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUser() { - return user; - } - - /** - * Sets the value of the user property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUser(String value) { - this.user = value; - } - - /** - * Gets the value of the auditId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAuditId() { - return auditId; - } - - /** - * Sets the value of the auditId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAuditId(String value) { - this.auditId = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecentActivityList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecentActivityList.java deleted file mode 100644 index 47737e305..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecentActivityList.java +++ /dev/null @@ -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; - - -/** - *

Java class for RecentActivityList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RecentActivityList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RecentActivity" type="{http://schema.ultraservice.neustar.com/v01/}RecentActivity" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RecentActivityList", propOrder = { - "recentActivity" -}) -public class RecentActivityList { - - @XmlElement(name = "RecentActivity", required = true) - protected List recentActivity; - - /** - * Gets the value of the recentActivity property. - * - *

- * 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 set method for the recentActivity property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRecentActivity().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RecentActivity } - * - * - */ - public List getRecentActivity() { - if (recentActivity == null) { - recentActivity = new ArrayList(); - } - return this.recentActivity; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Record.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Record.java deleted file mode 100644 index 9552bb13e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Record.java +++ /dev/null @@ -1,146 +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; - - -/** - *

Java class for Record complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Record">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ARecord" type="{http://schema.ultraservice.neustar.com/v01/}ARecord"/>
- *         <element name="CNAMERecord" type="{http://schema.ultraservice.neustar.com/v01/}CNAMERecord"/>
- *         <element name="SubPoolRecord" type="{http://schema.ultraservice.neustar.com/v01/}SUBPOOLRecord"/>
- *       </sequence>
- *       <attribute name="recordType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}RecordType" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Record", propOrder = { - "aRecord", - "cnameRecord", - "subPoolRecord" -}) -public class Record { - - @XmlElement(name = "ARecord", required = true) - protected ARecord aRecord; - @XmlElement(name = "CNAMERecord", required = true) - protected CNAMERecord cnameRecord; - @XmlElement(name = "SubPoolRecord", required = true) - protected SUBPOOLRecord subPoolRecord; - @XmlAttribute(name = "recordType", required = true) - protected RecordType recordType; - - /** - * Gets the value of the aRecord property. - * - * @return - * possible object is - * {@link ARecord } - * - */ - public ARecord getARecord() { - return aRecord; - } - - /** - * Sets the value of the aRecord property. - * - * @param value - * allowed object is - * {@link ARecord } - * - */ - public void setARecord(ARecord value) { - this.aRecord = value; - } - - /** - * Gets the value of the cnameRecord property. - * - * @return - * possible object is - * {@link CNAMERecord } - * - */ - public CNAMERecord getCNAMERecord() { - return cnameRecord; - } - - /** - * Sets the value of the cnameRecord property. - * - * @param value - * allowed object is - * {@link CNAMERecord } - * - */ - public void setCNAMERecord(CNAMERecord value) { - this.cnameRecord = value; - } - - /** - * Gets the value of the subPoolRecord property. - * - * @return - * possible object is - * {@link SUBPOOLRecord } - * - */ - public SUBPOOLRecord getSubPoolRecord() { - return subPoolRecord; - } - - /** - * Sets the value of the subPoolRecord property. - * - * @param value - * allowed object is - * {@link SUBPOOLRecord } - * - */ - public void setSubPoolRecord(SUBPOOLRecord value) { - this.subPoolRecord = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecordState.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecordState.java deleted file mode 100644 index 1be4fb4f1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecordState.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RecordState. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="RecordState">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ACTIVE"/>
- *     <enumeration value="INACTIVE"/>
- *     <enumeration value="INACTIVE_DUE_TO_CNAME"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RecordState") -@XmlEnum -public enum RecordState { - - ACTIVE, - INACTIVE, - INACTIVE_DUE_TO_CNAME; - - public String value() { - return name(); - } - - public static RecordState fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecordType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecordType.java deleted file mode 100644 index 60434dee8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RecordType.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RecordType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="RecordType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="A"/>
- *     <enumeration value="CNAME"/>
- *     <enumeration value="SUBPOOL"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RecordType") -@XmlEnum -public enum RecordType { - - A, - CNAME, - SUBPOOL; - - public String value() { - return name(); - } - - public static RecordType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RedirectType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RedirectType.java deleted file mode 100644 index f7f1b65f6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RedirectType.java +++ /dev/null @@ -1,56 +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; - - -/** - *

Java class for RedirectType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="RedirectType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Framed"/>
- *     <enumeration value="HTTP_301_REDIRECT"/>
- *     <enumeration value="HTTP_302_REDIRECT"/>
- *     <enumeration value="HTTP_303_REDIRECT"/>
- *     <enumeration value="HTTP_307_REDIRECT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RedirectType") -@XmlEnum -public enum RedirectType { - - @XmlEnumValue("Framed") - FRAMED("Framed"), - HTTP_301_REDIRECT("HTTP_301_REDIRECT"), - HTTP_302_REDIRECT("HTTP_302_REDIRECT"), - HTTP_303_REDIRECT("HTTP_303_REDIRECT"), - HTTP_307_REDIRECT("HTTP_307_REDIRECT"); - private final String value; - - RedirectType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static RedirectType fromValue(String v) { - for (RedirectType c: RedirectType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Region.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Region.java deleted file mode 100644 index 430d04a8b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Region.java +++ /dev/null @@ -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; - - -/** - *

Java class for Region complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Region">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="TerritoryName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RegionName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RegionID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Region") -public class Region { - - @XmlAttribute(name = "TerritoryName", required = true) - protected String territoryName; - @XmlAttribute(name = "RegionName", required = true) - protected String regionName; - @XmlAttribute(name = "RegionID", required = true) - protected String regionID; - - /** - * Gets the value of the territoryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTerritoryName() { - return territoryName; - } - - /** - * Sets the value of the territoryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTerritoryName(String value) { - this.territoryName = value; - } - - /** - * Gets the value of the regionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionName() { - return regionName; - } - - /** - * Sets the value of the regionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionName(String value) { - this.regionName = value; - } - - /** - * Gets the value of the regionID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionID() { - return regionID; - } - - /** - * Sets the value of the regionID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionID(String value) { - this.regionID = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionAndAgent.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionAndAgent.java deleted file mode 100644 index b46da7e89..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionAndAgent.java +++ /dev/null @@ -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; - - -/** - *

Java class for RegionAndAgent complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RegionAndAgent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="RegionName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="AgentName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RegionAndAgent") -public class RegionAndAgent { - - @XmlAttribute(name = "RegionName", required = true) - protected String regionName; - @XmlAttribute(name = "AgentName", required = true) - protected String agentName; - - /** - * Gets the value of the regionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionName() { - return regionName; - } - - /** - * Sets the value of the regionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionName(String value) { - this.regionName = value; - } - - /** - * Gets the value of the agentName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAgentName() { - return agentName; - } - - /** - * Sets the value of the agentName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAgentName(String value) { - this.agentName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionForNewGroups.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionForNewGroups.java deleted file mode 100644 index d3bf0b521..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionForNewGroups.java +++ /dev/null @@ -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; - - -/** - *

Java class for RegionForNewGroups complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RegionForNewGroups">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="RegionName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TerritoryName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RegionForNewGroups") -public class RegionForNewGroups { - - @XmlAttribute(name = "RegionName", required = true) - protected String regionName; - @XmlAttribute(name = "TerritoryName", required = true) - protected String territoryName; - - /** - * Gets the value of the regionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionName() { - return regionName; - } - - /** - * Sets the value of the regionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionName(String value) { - this.regionName = value; - } - - /** - * Gets the value of the territoryName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTerritoryName() { - return territoryName; - } - - /** - * Sets the value of the territoryName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTerritoryName(String value) { - this.territoryName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionForNewGroupsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionForNewGroupsList.java deleted file mode 100644 index 5cd44ca9c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionForNewGroupsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for RegionForNewGroupsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RegionForNewGroupsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RegionForNewGroups" type="{http://schema.ultraservice.neustar.com/v01/}RegionForNewGroups" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RegionForNewGroupsList", propOrder = { - "regionForNewGroups" -}) -public class RegionForNewGroupsList { - - @XmlElement(name = "RegionForNewGroups", required = true) - protected List regionForNewGroups; - - /** - * Gets the value of the regionForNewGroups property. - * - *

- * 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 set method for the regionForNewGroups property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRegionForNewGroups().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RegionForNewGroups } - * - * - */ - public List getRegionForNewGroups() { - if (regionForNewGroups == null) { - regionForNewGroups = new ArrayList(); - } - return this.regionForNewGroups; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionList.java deleted file mode 100644 index 14ad45268..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RegionList.java +++ /dev/null @@ -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; - - -/** - *

Java class for RegionList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RegionList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Region" type="{http://schema.ultraservice.neustar.com/v01/}Region" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RegionList", propOrder = { - "region" -}) -public class RegionList { - - @XmlElement(name = "Region", required = true) - protected List region; - - /** - * Gets the value of the region property. - * - *

- * 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 set method for the region property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRegion().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Region } - * - * - */ - public List getRegion() { - if (region == null) { - region = new ArrayList(); - } - return this.region; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Regions.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Regions.java deleted file mode 100644 index b2d63c223..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Regions.java +++ /dev/null @@ -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; - - -/** - *

Java class for Regions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Regions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="region" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Regions") -public class Regions { - - @XmlAttribute(name = "region", required = true) - protected String region; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ReportType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ReportType.java deleted file mode 100644 index 1ad927578..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ReportType.java +++ /dev/null @@ -1,87 +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; - - -/** - *

Java class for reportType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="reportType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Domains"/>
- *     <enumeration value="Records"/>
- *     <enumeration value="Queries"/>
- *     <enumeration value="Region"/>
- *     <enumeration value="PoolRecord"/>
- *     <enumeration value="FailoverProbe"/>
- *     <enumeration value="Failover"/>
- *     <enumeration value="Overall Activity - Domains"/>
- *     <enumeration value="Overall Activity - Records"/>
- *     <enumeration value="Overall Activity - Queries"/>
- *     <enumeration value="Activity by Region"/>
- *     <enumeration value="Failover - Pool Record"/>
- *     <enumeration value="Failover - Probe Statistics"/>
- *     <enumeration value="Failover - Failover"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "reportType") -@XmlEnum -public enum ReportType { - - @XmlEnumValue("Domains") - DOMAINS("Domains"), - @XmlEnumValue("Records") - RECORDS("Records"), - @XmlEnumValue("Queries") - QUERIES("Queries"), - @XmlEnumValue("Region") - REGION("Region"), - @XmlEnumValue("PoolRecord") - POOL_RECORD("PoolRecord"), - @XmlEnumValue("FailoverProbe") - FAILOVER_PROBE("FailoverProbe"), - @XmlEnumValue("Failover") - FAILOVER("Failover"), - @XmlEnumValue("Overall Activity - Domains") - OVERALL_ACTIVITY_DOMAINS("Overall Activity - Domains"), - @XmlEnumValue("Overall Activity - Records") - OVERALL_ACTIVITY_RECORDS("Overall Activity - Records"), - @XmlEnumValue("Overall Activity - Queries") - OVERALL_ACTIVITY_QUERIES("Overall Activity - Queries"), - @XmlEnumValue("Activity by Region") - ACTIVITY_BY_REGION("Activity by Region"), - @XmlEnumValue("Failover - Pool Record") - FAILOVER_POOL_RECORD("Failover - Pool Record"), - @XmlEnumValue("Failover - Probe Statistics") - FAILOVER_PROBE_STATISTICS("Failover - Probe Statistics"), - @XmlEnumValue("Failover - Failover") - FAILOVER_FAILOVER("Failover - Failover"); - private final String value; - - ReportType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ReportType fromValue(String v) { - for (ReportType c: ReportType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecord.java deleted file mode 100644 index 68f393668..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecord.java +++ /dev/null @@ -1,329 +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.XmlSchemaType; -import javax.xml.bind.annotation.XmlType; -import javax.xml.datatype.XMLGregorianCalendar; - - -/** - *

Java class for ResourceRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoValues" type="{http://schema.ultraservice.neustar.com/v01/}InfoValues"/>
- *       </sequence>
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="DName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TTL" 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="LName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Priority" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Created" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
- *       <attribute name="Modified" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecord", propOrder = { - "infoValues" -}) -public class ResourceRecord { - - @XmlElement(name = "InfoValues", required = true) - protected InfoValues infoValues; - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "Type", required = true) - protected int type; - @XmlAttribute(name = "DName", required = true) - protected String dName; - @XmlAttribute(name = "TTL", required = true) - protected String ttl; - @XmlAttribute(name = "Guid", required = true) - protected String guid; - @XmlAttribute(name = "ZoneId", required = true) - protected String zoneId; - @XmlAttribute(name = "LName", required = true) - protected String lName; - @XmlAttribute(name = "Priority") - protected String priority; - @XmlAttribute(name = "Created", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar created; - @XmlAttribute(name = "Modified", required = true) - @XmlSchemaType(name = "dateTime") - protected XMLGregorianCalendar modified; - - /** - * Gets the value of the infoValues property. - * - * @return - * possible object is - * {@link InfoValues } - * - */ - public InfoValues getInfoValues() { - return infoValues; - } - - /** - * Sets the value of the infoValues property. - * - * @param value - * allowed object is - * {@link InfoValues } - * - */ - public void setInfoValues(InfoValues value) { - this.infoValues = 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 type property. - * - */ - public int getType() { - return type; - } - - /** - * Sets the value of the type property. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Gets the value of the dName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDName() { - return dName; - } - - /** - * Sets the value of the dName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDName(String value) { - this.dName = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = 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 lName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLName() { - return lName; - } - - /** - * Sets the value of the lName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLName(String value) { - this.lName = value; - } - - /** - * Gets the value of the priority property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPriority() { - return priority; - } - - /** - * Sets the value of the priority property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPriority(String value) { - this.priority = value; - } - - /** - * Gets the value of the created property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getCreated() { - return created; - } - - /** - * Sets the value of the created property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setCreated(XMLGregorianCalendar value) { - this.created = value; - } - - /** - * Gets the value of the modified property. - * - * @return - * possible object is - * {@link XMLGregorianCalendar } - * - */ - public XMLGregorianCalendar getModified() { - return modified; - } - - /** - * Sets the value of the modified property. - * - * @param value - * allowed object is - * {@link XMLGregorianCalendar } - * - */ - public void setModified(XMLGregorianCalendar value) { - this.modified = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordGUIDList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordGUIDList.java deleted file mode 100644 index 46d3b2089..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordGUIDList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ResourceRecordGUIDList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordGUIDList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GUID" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordGUIDList", propOrder = { - "guid" -}) -public class ResourceRecordGUIDList { - - @XmlElement(name = "GUID", required = true) - protected List guid; - - /** - * Gets the value of the guid property. - * - *

- * 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 set method for the guid property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getGUID().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getGUID() { - if (guid == null) { - guid = new ArrayList(); - } - return this.guid; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordList.java deleted file mode 100644 index a14016e15..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ResourceRecordList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ResourceRecord" type="{http://schema.ultraservice.neustar.com/v01/}ResourceRecord" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordList", propOrder = { - "resourceRecord" -}) -public class ResourceRecordList { - - @XmlElement(name = "ResourceRecord", required = true) - protected List resourceRecord; - - /** - * Gets the value of the resourceRecord property. - * - *

- * 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 set method for the resourceRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getResourceRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ResourceRecord } - * - * - */ - public List getResourceRecord() { - if (resourceRecord == null) { - resourceRecord = new ArrayList(); - } - return this.resourceRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTemplate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTemplate.java deleted file mode 100644 index e65569977..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTemplate.java +++ /dev/null @@ -1,82 +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; - - -/** - *

Java class for ResourceRecordTemplate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordTemplate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoTypes" type="{http://schema.ultraservice.neustar.com/v01/}InfoTypes"/>
- *       </sequence>
- *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordTemplate", propOrder = { - "infoTypes" -}) -public class ResourceRecordTemplate { - - @XmlElement(name = "InfoTypes", required = true) - protected InfoTypes infoTypes; - @XmlAttribute(name = "Type", required = true) - protected int type; - - /** - * Gets the value of the infoTypes property. - * - * @return - * possible object is - * {@link InfoTypes } - * - */ - public InfoTypes getInfoTypes() { - return infoTypes; - } - - /** - * Sets the value of the infoTypes property. - * - * @param value - * allowed object is - * {@link InfoTypes } - * - */ - public void setInfoTypes(InfoTypes value) { - this.infoTypes = value; - } - - /** - * Gets the value of the type property. - * - */ - public int getType() { - return type; - } - - /** - * Sets the value of the type property. - * - */ - public void setType(int value) { - this.type = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToCreate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToCreate.java deleted file mode 100644 index 648361faa..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToCreate.java +++ /dev/null @@ -1,163 +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; - - -/** - *

Java class for ResourceRecordToCreate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordToCreate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoValues" type="{http://schema.ultraservice.neustar.com/v01/}InfoValues"/>
- *       </sequence>
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="DName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TTL" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordToCreate", propOrder = { - "infoValues" -}) -public class ResourceRecordToCreate { - - @XmlElement(name = "InfoValues", required = true) - protected InfoValues infoValues; - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "Type", required = true) - protected int type; - @XmlAttribute(name = "DName", required = true) - protected String dName; - @XmlAttribute(name = "TTL") - protected String ttl; - - /** - * Gets the value of the infoValues property. - * - * @return - * possible object is - * {@link InfoValues } - * - */ - public InfoValues getInfoValues() { - return infoValues; - } - - /** - * Sets the value of the infoValues property. - * - * @param value - * allowed object is - * {@link InfoValues } - * - */ - public void setInfoValues(InfoValues value) { - this.infoValues = 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 type property. - * - */ - public int getType() { - return type; - } - - /** - * Sets the value of the type property. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Gets the value of the dName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDName() { - return dName; - } - - /** - * Sets the value of the dName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDName(String value) { - this.dName = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToSearch.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToSearch.java deleted file mode 100644 index 31802306f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToSearch.java +++ /dev/null @@ -1,136 +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; - - -/** - *

Java class for ResourceRecordToSearch complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordToSearch">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoValues" type="{http://schema.ultraservice.neustar.com/v01/}InfoValues"/>
- *       </sequence>
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="DName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordToSearch", propOrder = { - "infoValues" -}) -public class ResourceRecordToSearch { - - @XmlElement(name = "InfoValues", required = true) - protected InfoValues infoValues; - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "Type", required = true) - protected int type; - @XmlAttribute(name = "DName", required = true) - protected String dName; - - /** - * Gets the value of the infoValues property. - * - * @return - * possible object is - * {@link InfoValues } - * - */ - public InfoValues getInfoValues() { - return infoValues; - } - - /** - * Sets the value of the infoValues property. - * - * @param value - * allowed object is - * {@link InfoValues } - * - */ - public void setInfoValues(InfoValues value) { - this.infoValues = 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 type property. - * - */ - public int getType() { - return type; - } - - /** - * Sets the value of the type property. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Gets the value of the dName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDName() { - return dName; - } - - /** - * Sets the value of the dName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDName(String value) { - this.dName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToUpdate.java deleted file mode 100644 index d67fcc61d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordToUpdate.java +++ /dev/null @@ -1,163 +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; - - -/** - *

Java class for ResourceRecordToUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordToUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="InfoValues" type="{http://schema.ultraservice.neustar.com/v01/}InfoValues"/>
- *       </sequence>
- *       <attribute name="Guid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="DName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TTL" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordToUpdate", propOrder = { - "infoValues" -}) -public class ResourceRecordToUpdate { - - @XmlElement(name = "InfoValues", required = true) - protected InfoValues infoValues; - @XmlAttribute(name = "Guid", required = true) - protected String guid; - @XmlAttribute(name = "Type", required = true) - protected int type; - @XmlAttribute(name = "DName") - protected String dName; - @XmlAttribute(name = "TTL") - protected String ttl; - - /** - * Gets the value of the infoValues property. - * - * @return - * possible object is - * {@link InfoValues } - * - */ - public InfoValues getInfoValues() { - return infoValues; - } - - /** - * Sets the value of the infoValues property. - * - * @param value - * allowed object is - * {@link InfoValues } - * - */ - public void setInfoValues(InfoValues value) { - this.infoValues = 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 type property. - * - */ - public int getType() { - return type; - } - - /** - * Sets the value of the type property. - * - */ - public void setType(int value) { - this.type = value; - } - - /** - * Gets the value of the dName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDName() { - return dName; - } - - /** - * Sets the value of the dName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDName(String value) { - this.dName = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordType.java deleted file mode 100644 index 47054e233..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordType.java +++ /dev/null @@ -1,90 +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; - - -/** - *

Java class for ResourceRecordType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ResourceRecordType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="Directional"/>
- *     <enumeration value="Load Balancing"/>
- *     <enumeration value="A (IPv4 Host)"/>
- *     <enumeration value="AAAA (IPv6 Host)"/>
- *     <enumeration value="CNAME (Alias)"/>
- *     <enumeration value="Web Forwarding"/>
- *     <enumeration value="MX (Mail Exchange)"/>
- *     <enumeration value="TXT (Text)"/>
- *     <enumeration value="SRV (Service Locator)"/>
- *     <enumeration value="NS (Nameserver)"/>
- *     <enumeration value="PTR (Pointer)"/>
- *     <enumeration value="RP (Responsible Person)"/>
- *     <enumeration value="HINFO (Host Info)"/>
- *     <enumeration value="NAPTR (Naming Authority Pointer)"/>
- *     <enumeration value="SPF (Sender Policy Framework)"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ResourceRecordType") -@XmlEnum -public enum ResourceRecordType { - - @XmlEnumValue("Directional") - DIRECTIONAL("Directional"), - @XmlEnumValue("Load Balancing") - LOAD_BALANCING("Load Balancing"), - @XmlEnumValue("A (IPv4 Host)") - A_I_PV_4_HOST("A (IPv4 Host)"), - @XmlEnumValue("AAAA (IPv6 Host)") - AAAA_I_PV_6_HOST("AAAA (IPv6 Host)"), - @XmlEnumValue("CNAME (Alias)") - CNAME_ALIAS("CNAME (Alias)"), - @XmlEnumValue("Web Forwarding") - WEB_FORWARDING("Web Forwarding"), - @XmlEnumValue("MX (Mail Exchange)") - MX_MAIL_EXCHANGE("MX (Mail Exchange)"), - @XmlEnumValue("TXT (Text)") - TXT_TEXT("TXT (Text)"), - @XmlEnumValue("SRV (Service Locator)") - SRV_SERVICE_LOCATOR("SRV (Service Locator)"), - @XmlEnumValue("NS (Nameserver)") - NS_NAMESERVER("NS (Nameserver)"), - @XmlEnumValue("PTR (Pointer)") - PTR_POINTER("PTR (Pointer)"), - @XmlEnumValue("RP (Responsible Person)") - RP_RESPONSIBLE_PERSON("RP (Responsible Person)"), - @XmlEnumValue("HINFO (Host Info)") - HINFO_HOST_INFO("HINFO (Host Info)"), - @XmlEnumValue("NAPTR (Naming Authority Pointer)") - NAPTR_NAMING_AUTHORITY_POINTER("NAPTR (Naming Authority Pointer)"), - @XmlEnumValue("SPF (Sender Policy Framework)") - SPF_SENDER_POLICY_FRAMEWORK("SPF (Sender Policy Framework)"); - private final String value; - - ResourceRecordType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ResourceRecordType fromValue(String v) { - for (ResourceRecordType c: ResourceRecordType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTypeOrderInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTypeOrderInfo.java deleted file mode 100644 index 885e83912..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTypeOrderInfo.java +++ /dev/null @@ -1,98 +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; - - -/** - *

Java class for ResourceRecordTypeOrderInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordTypeOrderInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="recordOrder" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="recordType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}ResourceRecordType" />
- *       <attribute name="recordDisplay" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordTypeOrderInfo") -public class ResourceRecordTypeOrderInfo { - - @XmlAttribute(name = "recordOrder", required = true) - protected int recordOrder; - @XmlAttribute(name = "recordType", required = true) - protected ResourceRecordType recordType; - @XmlAttribute(name = "recordDisplay", required = true) - protected boolean recordDisplay; - - /** - * Gets the value of the recordOrder property. - * - */ - public int getRecordOrder() { - return recordOrder; - } - - /** - * Sets the value of the recordOrder property. - * - */ - public void setRecordOrder(int value) { - this.recordOrder = value; - } - - /** - * Gets the value of the recordType property. - * - * @return - * possible object is - * {@link ResourceRecordType } - * - */ - public ResourceRecordType getRecordType() { - return recordType; - } - - /** - * Sets the value of the recordType property. - * - * @param value - * allowed object is - * {@link ResourceRecordType } - * - */ - public void setRecordType(ResourceRecordType value) { - this.recordType = value; - } - - /** - * Gets the value of the recordDisplay property. - * - */ - public boolean isRecordDisplay() { - return recordDisplay; - } - - /** - * Sets the value of the recordDisplay property. - * - */ - public void setRecordDisplay(boolean value) { - this.recordDisplay = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTypeOrderInfoList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTypeOrderInfoList.java deleted file mode 100644 index 4da41142a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResourceRecordTypeOrderInfoList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ResourceRecordTypeOrderInfoList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ResourceRecordTypeOrderInfoList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ResourceRecordTypeOrderInfo" type="{http://schema.ultraservice.neustar.com/v01/}ResourceRecordTypeOrderInfo" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ResourceRecordTypeOrderInfoList", propOrder = { - "resourceRecordTypeOrderInfo" -}) -public class ResourceRecordTypeOrderInfoList { - - @XmlElement(name = "ResourceRecordTypeOrderInfo", required = true) - protected List resourceRecordTypeOrderInfo; - - /** - * Gets the value of the resourceRecordTypeOrderInfo property. - * - *

- * 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 set method for the resourceRecordTypeOrderInfo property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getResourceRecordTypeOrderInfo().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ResourceRecordTypeOrderInfo } - * - * - */ - public List getResourceRecordTypeOrderInfo() { - if (resourceRecordTypeOrderInfo == null) { - resourceRecordTypeOrderInfo = new ArrayList(); - } - return this.resourceRecordTypeOrderInfo; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResponseMethod.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResponseMethod.java deleted file mode 100644 index 0e89cc72f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ResponseMethod.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for ResponseMethod. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="ResponseMethod">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="FIXED"/>
- *     <enumeration value="RANDOM"/>
- *     <enumeration value="ROUND_ROBIN"/>
- *     <enumeration value="WEIGHTED"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "ResponseMethod") -@XmlEnum -public enum ResponseMethod { - - FIXED, - RANDOM, - ROUND_ROBIN, - WEIGHTED; - - public String value() { - return name(); - } - - public static ResponseMethod fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RestrictIP.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RestrictIP.java deleted file mode 100644 index 5198a1bfc..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RestrictIP.java +++ /dev/null @@ -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; - - -/** - *

Java class for RestrictIP complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RestrictIP">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="guid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="startIP" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="endIP" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="keyID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="comments" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="modified" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RestrictIP") -public class RestrictIP { - - @XmlAttribute(name = "guid", required = true) - protected String guid; - @XmlAttribute(name = "startIP", required = true) - protected String startIP; - @XmlAttribute(name = "endIP", required = true) - protected String endIP; - @XmlAttribute(name = "keyID", required = true) - protected String keyID; - @XmlAttribute(name = "comments", required = true) - protected String comments; - @XmlAttribute(name = "modified", required = true) - protected String modified; - - /** - * 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 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 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 keyID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeyID() { - return keyID; - } - - /** - * Sets the value of the keyID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeyID(String value) { - this.keyID = value; - } - - /** - * Gets the value of the comments property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getComments() { - return comments; - } - - /** - * Sets the value of the comments property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setComments(String value) { - this.comments = value; - } - - /** - * Gets the value of the modified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModified() { - return modified; - } - - /** - * Sets the value of the modified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModified(String value) { - this.modified = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RestrictIPList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RestrictIPList.java deleted file mode 100644 index cbc11ff64..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RestrictIPList.java +++ /dev/null @@ -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; - - -/** - *

Java class for RestrictIPList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RestrictIPList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="RestrictIP" type="{http://schema.ultraservice.neustar.com/v01/}RestrictIP" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RestrictIPList", propOrder = { - "restrictIP" -}) -public class RestrictIPList { - - @XmlElement(name = "RestrictIP", required = true) - protected List restrictIP; - - /** - * Gets the value of the restrictIP property. - * - *

- * 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 set method for the restrictIP property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRestrictIP().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link RestrictIP } - * - * - */ - public List getRestrictIP() { - if (restrictIP == null) { - restrictIP = new ArrayList(); - } - return this.restrictIP; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RoundRobinRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RoundRobinRecord.java deleted file mode 100644 index 0f31c0bc6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RoundRobinRecord.java +++ /dev/null @@ -1,168 +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; - - -/** - *

Java class for RoundRobinRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="RoundRobinRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="lbPoolID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="info1Value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TTL" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "RoundRobinRecord") -public class RoundRobinRecord { - - @XmlAttribute(name = "lbPoolID", required = true) - protected String lbPoolID; - @XmlAttribute(name = "info1Value", required = true) - protected String info1Value; - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "Type", required = true) - protected String type; - @XmlAttribute(name = "TTL") - protected String ttl; - - /** - * Gets the value of the lbPoolID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLbPoolID() { - return lbPoolID; - } - - /** - * Sets the value of the lbPoolID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLbPoolID(String value) { - this.lbPoolID = value; - } - - /** - * Gets the value of the info1Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo1Value() { - return info1Value; - } - - /** - * Sets the value of the info1Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo1Value(String value) { - this.info1Value = 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 type property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setType(String value) { - this.type = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Rule.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Rule.java deleted file mode 100644 index 0613fa798..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Rule.java +++ /dev/null @@ -1,341 +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; - - -/** - *

Java class for Rule complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Rule">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ruleName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="priority" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="type" type="{http://schema.ultraservice.neustar.com/v01/}RuleType" minOccurs="0"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="status" type="{http://schema.ultraservice.neustar.com/v01/}StatusEnum" minOccurs="0"/>
- *         <element name="attachNewProbes" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="occurrences" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="timespan" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="changeState" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="stateDelay" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="weightPercentage" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maxActiveAdjustment" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="maxResponseAdjustment" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="notifications" type="{http://schema.ultraservice.neustar.com/v01/}Notifications" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rule", propOrder = { - "ruleName", - "priority", - "type", - "description", - "status", - "attachNewProbes", - "occurrences", - "timespan", - "changeState", - "stateDelay", - "weightPercentage", - "maxActiveAdjustment", - "maxResponseAdjustment", - "notifications" -}) -public class Rule { - - @XmlElement(required = true) - protected String ruleName; - protected int priority; - protected RuleType type; - protected String description; - protected StatusEnum status; - protected boolean attachNewProbes; - protected int occurrences; - protected int timespan; - protected boolean changeState; - protected int stateDelay; - protected int weightPercentage; - protected int maxActiveAdjustment; - protected int maxResponseAdjustment; - protected Notifications notifications; - - /** - * 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; - } - - /** - * Gets the value of the priority property. - * - */ - public int getPriority() { - return priority; - } - - /** - * Sets the value of the priority property. - * - */ - public void setPriority(int value) { - this.priority = value; - } - - /** - * Gets the value of the type property. - * - * @return - * possible object is - * {@link RuleType } - * - */ - public RuleType getType() { - return type; - } - - /** - * Sets the value of the type property. - * - * @param value - * allowed object is - * {@link RuleType } - * - */ - public void setType(RuleType value) { - this.type = 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 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 attachNewProbes property. - * - */ - public boolean isAttachNewProbes() { - return attachNewProbes; - } - - /** - * Sets the value of the attachNewProbes property. - * - */ - public void setAttachNewProbes(boolean value) { - this.attachNewProbes = value; - } - - /** - * Gets the value of the occurrences property. - * - */ - public int getOccurrences() { - return occurrences; - } - - /** - * Sets the value of the occurrences property. - * - */ - public void setOccurrences(int value) { - this.occurrences = value; - } - - /** - * Gets the value of the timespan property. - * - */ - public int getTimespan() { - return timespan; - } - - /** - * Sets the value of the timespan property. - * - */ - public void setTimespan(int value) { - this.timespan = value; - } - - /** - * Gets the value of the changeState property. - * - */ - public boolean isChangeState() { - return changeState; - } - - /** - * Sets the value of the changeState property. - * - */ - public void setChangeState(boolean value) { - this.changeState = value; - } - - /** - * Gets the value of the stateDelay property. - * - */ - public int getStateDelay() { - return stateDelay; - } - - /** - * Sets the value of the stateDelay property. - * - */ - public void setStateDelay(int value) { - this.stateDelay = value; - } - - /** - * Gets the value of the weightPercentage property. - * - */ - public int getWeightPercentage() { - return weightPercentage; - } - - /** - * Sets the value of the weightPercentage property. - * - */ - public void setWeightPercentage(int value) { - this.weightPercentage = value; - } - - /** - * Gets the value of the maxActiveAdjustment property. - * - */ - public int getMaxActiveAdjustment() { - return maxActiveAdjustment; - } - - /** - * Sets the value of the maxActiveAdjustment property. - * - */ - public void setMaxActiveAdjustment(int value) { - this.maxActiveAdjustment = value; - } - - /** - * Gets the value of the maxResponseAdjustment property. - * - */ - public int getMaxResponseAdjustment() { - return maxResponseAdjustment; - } - - /** - * Sets the value of the maxResponseAdjustment property. - * - */ - public void setMaxResponseAdjustment(int value) { - this.maxResponseAdjustment = value; - } - - /** - * Gets the value of the notifications property. - * - * @return - * possible object is - * {@link Notifications } - * - */ - public Notifications getNotifications() { - return notifications; - } - - /** - * Sets the value of the notifications property. - * - * @param value - * allowed object is - * {@link Notifications } - * - */ - public void setNotifications(Notifications value) { - this.notifications = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RuleType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RuleType.java deleted file mode 100644 index 56da071fb..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/RuleType.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for RuleType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="RuleType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="RESTORED"/>
- *     <enumeration value="ACTION"/>
- *     <enumeration value="FAILOVER"/>
- *     <enumeration value="FAILBACK"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "RuleType") -@XmlEnum -public enum RuleType { - - RESTORED, - ACTION, - FAILOVER, - FAILBACK; - - public String value() { - return name(); - } - - public static RuleType fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Rules.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Rules.java deleted file mode 100644 index 7b2dd9917..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Rules.java +++ /dev/null @@ -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; - - -/** - *

Java class for Rules complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Rules">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="rules" type="{http://schema.ultraservice.neustar.com/v01/}Rule" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Rules", propOrder = { - "rules" -}) -public class Rules { - - protected List rules; - - /** - * Gets the value of the rules property. - * - *

- * 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 set method for the rules property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getRules().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link Rule } - * - * - */ - public List getRules() { - if (rules == null) { - rules = new ArrayList(); - } - return this.rules; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBAgentsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBAgentsData.java deleted file mode 100644 index bfd696663..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBAgentsData.java +++ /dev/null @@ -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; - - -/** - *

Java class for SBAgentsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SBAgentsData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="AgentName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RegionName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RegionId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SBAgentsData") -public class SBAgentsData { - - @XmlAttribute(name = "AgentName") - protected String agentName; - @XmlAttribute(name = "RegionName") - protected String regionName; - @XmlAttribute(name = "RegionId") - protected String regionId; - - /** - * Gets the value of the agentName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAgentName() { - return agentName; - } - - /** - * Sets the value of the agentName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAgentName(String value) { - this.agentName = value; - } - - /** - * Gets the value of the regionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionName() { - return regionName; - } - - /** - * Sets the value of the regionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionName(String value) { - this.regionName = value; - } - - /** - * Gets the value of the regionId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionId() { - return regionId; - } - - /** - * Sets the value of the regionId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionId(String value) { - this.regionId = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBAgentsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBAgentsList.java deleted file mode 100644 index 0cac52092..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBAgentsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for SBAgentsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SBAgentsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SBAgentsData" type="{http://schema.ultraservice.neustar.com/v01/}SBAgentsData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SBAgentsList", propOrder = { - "sbAgentsData" -}) -public class SBAgentsList { - - @XmlElement(name = "SBAgentsData", required = true) - protected List sbAgentsData; - - /** - * Gets the value of the sbAgentsData property. - * - *

- * 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 set method for the sbAgentsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSBAgentsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SBAgentsData } - * - * - */ - public List getSBAgentsData() { - if (sbAgentsData == null) { - sbAgentsData = new ArrayList(); - } - return this.sbAgentsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBRegionData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBRegionData.java deleted file mode 100644 index 170d24b7a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBRegionData.java +++ /dev/null @@ -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; - - -/** - *

Java class for SBRegionData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SBRegionData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="RegionName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RegionId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SBRegionData") -public class SBRegionData { - - @XmlAttribute(name = "RegionName") - protected String regionName; - @XmlAttribute(name = "RegionId") - protected String regionId; - - /** - * Gets the value of the regionName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionName() { - return regionName; - } - - /** - * Sets the value of the regionName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionName(String value) { - this.regionName = value; - } - - /** - * Gets the value of the regionId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRegionId() { - return regionId; - } - - /** - * Sets the value of the regionId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRegionId(String value) { - this.regionId = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBRegionsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBRegionsList.java deleted file mode 100644 index 3f112d90f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SBRegionsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for SBRegionsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SBRegionsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SBRegionData" type="{http://schema.ultraservice.neustar.com/v01/}SBRegionData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SBRegionsList", propOrder = { - "sbRegionData" -}) -public class SBRegionsList { - - @XmlElement(name = "SBRegionData", required = true) - protected List sbRegionData; - - /** - * Gets the value of the sbRegionData property. - * - *

- * 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 set method for the sbRegionData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSBRegionData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SBRegionData } - * - * - */ - public List getSBRegionData() { - if (sbRegionData == null) { - sbRegionData = new ArrayList(); - } - return this.sbRegionData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTP2Transaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTP2Transaction.java deleted file mode 100644 index b80559850..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTP2Transaction.java +++ /dev/null @@ -1,215 +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; - - -/** - *

Java class for SMTP2Transaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SMTP2Transaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}SMTPCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}SMTPCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}SMTPCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="addressFrom" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="addressTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="messageBody" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SMTP2Transaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class SMTP2Transaction { - - protected SMTPCriteria warningCriteria; - protected SMTPCriteria criticalCriteria; - protected SMTPCriteria failCriteria; - @XmlAttribute(name = "port", required = true) - protected int port; - @XmlAttribute(name = "addressFrom", required = true) - protected String addressFrom; - @XmlAttribute(name = "addressTo", required = true) - protected String addressTo; - @XmlAttribute(name = "messageBody") - protected String messageBody; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link SMTPCriteria } - * - */ - public SMTPCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link SMTPCriteria } - * - */ - public void setWarningCriteria(SMTPCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link SMTPCriteria } - * - */ - public SMTPCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link SMTPCriteria } - * - */ - public void setCriticalCriteria(SMTPCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link SMTPCriteria } - * - */ - public SMTPCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link SMTPCriteria } - * - */ - public void setFailCriteria(SMTPCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the port property. - * - */ - public int getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - */ - public void setPort(int value) { - this.port = value; - } - - /** - * Gets the value of the addressFrom property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddressFrom() { - return addressFrom; - } - - /** - * Sets the value of the addressFrom property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddressFrom(String value) { - this.addressFrom = value; - } - - /** - * Gets the value of the addressTo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAddressTo() { - return addressTo; - } - - /** - * Sets the value of the addressTo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAddressTo(String value) { - this.addressTo = value; - } - - /** - * Gets the value of the messageBody property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMessageBody() { - return messageBody; - } - - /** - * Sets the value of the messageBody property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMessageBody(String value) { - this.messageBody = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPAvailabilityProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPAvailabilityProbeData.java deleted file mode 100644 index f6f9c1cf8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPAvailabilityProbeData.java +++ /dev/null @@ -1,438 +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; - - -/** - *

Java class for SMTPAvailabilityProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SMTPAvailabilityProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="connectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SMTPAvailabilityProbeData") -public class SMTPAvailabilityProbeData { - - @XmlAttribute(name = "port") - protected String port; - @XmlAttribute(name = "connectTime") - protected String connectTime; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "failConnectTime") - protected String failConnectTime; - @XmlAttribute(name = "criticalConnectTime") - protected String criticalConnectTime; - @XmlAttribute(name = "warningConnectTime") - protected String warningConnectTime; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - @XmlAttribute(name = "failAverageConnectTime") - protected String failAverageConnectTime; - @XmlAttribute(name = "criticalAverageConnectTime") - protected String criticalAverageConnectTime; - @XmlAttribute(name = "warningAverageConnectTime") - protected String warningAverageConnectTime; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort(String value) { - this.port = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConnectTime(String value) { - this.connectTime = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the failConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailConnectTime() { - return failConnectTime; - } - - /** - * Sets the value of the failConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailConnectTime(String value) { - this.failConnectTime = value; - } - - /** - * Gets the value of the criticalConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalConnectTime() { - return criticalConnectTime; - } - - /** - * Sets the value of the criticalConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalConnectTime(String value) { - this.criticalConnectTime = value; - } - - /** - * Gets the value of the warningConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningConnectTime() { - return warningConnectTime; - } - - /** - * Sets the value of the warningConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningConnectTime(String value) { - this.warningConnectTime = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - - /** - * Gets the value of the failAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageConnectTime() { - return failAverageConnectTime; - } - - /** - * Sets the value of the failAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageConnectTime(String value) { - this.failAverageConnectTime = value; - } - - /** - * Gets the value of the criticalAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageConnectTime() { - return criticalAverageConnectTime; - } - - /** - * Sets the value of the criticalAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageConnectTime(String value) { - this.criticalAverageConnectTime = value; - } - - /** - * Gets the value of the warningAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageConnectTime() { - return warningAverageConnectTime; - } - - /** - * Sets the value of the warningAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageConnectTime(String value) { - this.warningAverageConnectTime = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPCriteria.java deleted file mode 100644 index d7fea1535..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPCriteria.java +++ /dev/null @@ -1,125 +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; - - -/** - *

Java class for SMTPCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SMTPCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="runTime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="runTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *         <element name="connectTime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="connectTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SMTPCriteria", propOrder = { - "runTime", - "runTimeAverage", - "connectTime", - "connectTimeAverage" -}) -public class SMTPCriteria { - - protected int runTime; - protected Integer runTimeAverage; - protected int connectTime; - protected Integer connectTimeAverage; - - /** - * Gets the value of the runTime property. - * - */ - public int getRunTime() { - return runTime; - } - - /** - * Sets the value of the runTime property. - * - */ - public void setRunTime(int value) { - this.runTime = value; - } - - /** - * Gets the value of the runTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getRunTimeAverage() { - return runTimeAverage; - } - - /** - * Sets the value of the runTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setRunTimeAverage(Integer value) { - this.runTimeAverage = value; - } - - /** - * Gets the value of the connectTime property. - * - */ - public int getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - */ - public void setConnectTime(int value) { - this.connectTime = value; - } - - /** - * Gets the value of the connectTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTimeAverage() { - return connectTimeAverage; - } - - /** - * Sets the value of the connectTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTimeAverage(Integer value) { - this.connectTimeAverage = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPSendMailProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPSendMailProbeData.java deleted file mode 100644 index 72da0ff64..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPSendMailProbeData.java +++ /dev/null @@ -1,519 +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; - - -/** - *

Java class for SMTPSendMailProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SMTPSendMailProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="connectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="runtime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningRuntime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageRunTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="mailFromAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="mailToAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="message" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SMTPSendMailProbeData") -public class SMTPSendMailProbeData { - - @XmlAttribute(name = "port") - protected String port; - @XmlAttribute(name = "connectTime") - protected String connectTime; - @XmlAttribute(name = "runtime") - protected String runtime; - @XmlAttribute(name = "failConnectTime") - protected String failConnectTime; - @XmlAttribute(name = "criticalConnectTime") - protected String criticalConnectTime; - @XmlAttribute(name = "warningConnectTime") - protected String warningConnectTime; - @XmlAttribute(name = "failRuntime") - protected String failRuntime; - @XmlAttribute(name = "criticalRuntime") - protected String criticalRuntime; - @XmlAttribute(name = "warningRuntime") - protected String warningRuntime; - @XmlAttribute(name = "failAverageConnectTime") - protected String failAverageConnectTime; - @XmlAttribute(name = "criticalAverageConnectTime") - protected String criticalAverageConnectTime; - @XmlAttribute(name = "warningAverageConnectTime") - protected String warningAverageConnectTime; - @XmlAttribute(name = "failAverageRunTime") - protected String failAverageRunTime; - @XmlAttribute(name = "criticalAverageRunTime") - protected String criticalAverageRunTime; - @XmlAttribute(name = "warningAverageRunTime") - protected String warningAverageRunTime; - @XmlAttribute(name = "mailFromAddress") - protected String mailFromAddress; - @XmlAttribute(name = "mailToAddress") - protected String mailToAddress; - @XmlAttribute(name = "message") - protected String message; - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort(String value) { - this.port = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConnectTime(String value) { - this.connectTime = value; - } - - /** - * Gets the value of the runtime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRuntime() { - return runtime; - } - - /** - * Sets the value of the runtime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRuntime(String value) { - this.runtime = value; - } - - /** - * Gets the value of the failConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailConnectTime() { - return failConnectTime; - } - - /** - * Sets the value of the failConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailConnectTime(String value) { - this.failConnectTime = value; - } - - /** - * Gets the value of the criticalConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalConnectTime() { - return criticalConnectTime; - } - - /** - * Sets the value of the criticalConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalConnectTime(String value) { - this.criticalConnectTime = value; - } - - /** - * Gets the value of the warningConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningConnectTime() { - return warningConnectTime; - } - - /** - * Sets the value of the warningConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningConnectTime(String value) { - this.warningConnectTime = value; - } - - /** - * Gets the value of the failRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailRuntime() { - return failRuntime; - } - - /** - * Sets the value of the failRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailRuntime(String value) { - this.failRuntime = value; - } - - /** - * Gets the value of the criticalRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalRuntime() { - return criticalRuntime; - } - - /** - * Sets the value of the criticalRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalRuntime(String value) { - this.criticalRuntime = value; - } - - /** - * Gets the value of the warningRuntime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningRuntime() { - return warningRuntime; - } - - /** - * Sets the value of the warningRuntime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningRuntime(String value) { - this.warningRuntime = value; - } - - /** - * Gets the value of the failAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageConnectTime() { - return failAverageConnectTime; - } - - /** - * Sets the value of the failAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageConnectTime(String value) { - this.failAverageConnectTime = value; - } - - /** - * Gets the value of the criticalAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageConnectTime() { - return criticalAverageConnectTime; - } - - /** - * Sets the value of the criticalAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageConnectTime(String value) { - this.criticalAverageConnectTime = value; - } - - /** - * Gets the value of the warningAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageConnectTime() { - return warningAverageConnectTime; - } - - /** - * Sets the value of the warningAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageConnectTime(String value) { - this.warningAverageConnectTime = value; - } - - /** - * Gets the value of the failAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageRunTime() { - return failAverageRunTime; - } - - /** - * Sets the value of the failAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageRunTime(String value) { - this.failAverageRunTime = value; - } - - /** - * Gets the value of the criticalAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageRunTime() { - return criticalAverageRunTime; - } - - /** - * Sets the value of the criticalAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageRunTime(String value) { - this.criticalAverageRunTime = value; - } - - /** - * Gets the value of the warningAverageRunTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageRunTime() { - return warningAverageRunTime; - } - - /** - * Sets the value of the warningAverageRunTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageRunTime(String value) { - this.warningAverageRunTime = value; - } - - /** - * Gets the value of the mailFromAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMailFromAddress() { - return mailFromAddress; - } - - /** - * Sets the value of the mailFromAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMailFromAddress(String value) { - this.mailFromAddress = value; - } - - /** - * Gets the value of the mailToAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMailToAddress() { - return mailToAddress; - } - - /** - * Sets the value of the mailToAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMailToAddress(String value) { - this.mailToAddress = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPTransaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPTransaction.java deleted file mode 100644 index dc1c2fef2..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SMTPTransaction.java +++ /dev/null @@ -1,134 +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; - - -/** - *

Java class for SMTPTransaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SMTPTransaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}SMTPCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}SMTPCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}SMTPCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SMTPTransaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class SMTPTransaction { - - protected SMTPCriteria warningCriteria; - protected SMTPCriteria criticalCriteria; - protected SMTPCriteria failCriteria; - @XmlAttribute(name = "port", required = true) - protected int port; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link SMTPCriteria } - * - */ - public SMTPCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link SMTPCriteria } - * - */ - public void setWarningCriteria(SMTPCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link SMTPCriteria } - * - */ - public SMTPCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link SMTPCriteria } - * - */ - public void setCriticalCriteria(SMTPCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link SMTPCriteria } - * - */ - public SMTPCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link SMTPCriteria } - * - */ - public void setFailCriteria(SMTPCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the port property. - * - */ - public int getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - */ - public void setPort(int value) { - this.port = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SUBPOOLRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SUBPOOLRecord.java deleted file mode 100644 index 089640e01..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SUBPOOLRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for SUBPOOLRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SUBPOOLRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="poolName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SUBPOOLRecord") -public class SUBPOOLRecord { - - @XmlAttribute(name = "poolName", 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ScheduledEvent.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ScheduledEvent.java deleted file mode 100644 index f487f2c5a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ScheduledEvent.java +++ /dev/null @@ -1,241 +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; - - -/** - *

Java class for ScheduledEvent complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ScheduledEvent">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="guid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="action" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recurring" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="eventEndDate" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="eventStartDate" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="recurringEndDate" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="interval" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ScheduledEvent") -public class ScheduledEvent { - - @XmlAttribute(name = "guid") - protected String guid; - @XmlAttribute(name = "name") - protected String name; - @XmlAttribute(name = "action") - protected String action; - @XmlAttribute(name = "recurring", required = true) - protected boolean recurring; - @XmlAttribute(name = "eventEndDate") - protected String eventEndDate; - @XmlAttribute(name = "eventStartDate") - protected String eventStartDate; - @XmlAttribute(name = "recurringEndDate") - protected String recurringEndDate; - @XmlAttribute(name = "interval") - protected String interval; - - /** - * 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 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 action property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAction() { - return action; - } - - /** - * Sets the value of the action property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAction(String value) { - this.action = value; - } - - /** - * Gets the value of the recurring property. - * - */ - public boolean isRecurring() { - return recurring; - } - - /** - * Sets the value of the recurring property. - * - */ - public void setRecurring(boolean value) { - this.recurring = value; - } - - /** - * Gets the value of the eventEndDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEventEndDate() { - return eventEndDate; - } - - /** - * Sets the value of the eventEndDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEventEndDate(String value) { - this.eventEndDate = value; - } - - /** - * Gets the value of the eventStartDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEventStartDate() { - return eventStartDate; - } - - /** - * Sets the value of the eventStartDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEventStartDate(String value) { - this.eventStartDate = value; - } - - /** - * Gets the value of the recurringEndDate property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRecurringEndDate() { - return recurringEndDate; - } - - /** - * Sets the value of the recurringEndDate property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRecurringEndDate(String value) { - this.recurringEndDate = value; - } - - /** - * Gets the value of the interval property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInterval() { - return interval; - } - - /** - * Sets the value of the interval property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInterval(String value) { - this.interval = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ScheduledEventList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ScheduledEventList.java deleted file mode 100644 index f92426190..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ScheduledEventList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ScheduledEventList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ScheduledEventList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ScheduledEvent" type="{http://schema.ultraservice.neustar.com/v01/}ScheduledEvent" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ScheduledEventList", propOrder = { - "scheduledEvent" -}) -public class ScheduledEventList { - - @XmlElement(name = "ScheduledEvent", required = true) - protected List scheduledEvent; - - /** - * Gets the value of the scheduledEvent property. - * - *

- * 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 set method for the scheduledEvent property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getScheduledEvent().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ScheduledEvent } - * - * - */ - public List getScheduledEvent() { - if (scheduledEvent == null) { - scheduledEvent = new ArrayList(); - } - return this.scheduledEvent; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SecurityPreferences.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SecurityPreferences.java deleted file mode 100644 index 262cd59ab..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SecurityPreferences.java +++ /dev/null @@ -1,118 +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; - - -/** - *

Java class for SecurityPreferences complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SecurityPreferences">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SecurityQuestions" type="{http://schema.ultraservice.neustar.com/v01/}SecurityQuestions"/>
- *         <element name="InactiveTimeOutPreference" type="{http://schema.ultraservice.neustar.com/v01/}InactiveTimeOutPreference"/>
- *         <element name="PasswordExpirationPreference" type="{http://schema.ultraservice.neustar.com/v01/}PasswordExpirationPreference"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityPreferences", propOrder = { - "securityQuestions", - "inactiveTimeOutPreference", - "passwordExpirationPreference" -}) -public class SecurityPreferences { - - @XmlElement(name = "SecurityQuestions", required = true) - protected SecurityQuestions securityQuestions; - @XmlElement(name = "InactiveTimeOutPreference", required = true) - protected InactiveTimeOutPreference inactiveTimeOutPreference; - @XmlElement(name = "PasswordExpirationPreference", required = true) - protected PasswordExpirationPreference passwordExpirationPreference; - - /** - * Gets the value of the securityQuestions property. - * - * @return - * possible object is - * {@link SecurityQuestions } - * - */ - public SecurityQuestions getSecurityQuestions() { - return securityQuestions; - } - - /** - * Sets the value of the securityQuestions property. - * - * @param value - * allowed object is - * {@link SecurityQuestions } - * - */ - public void setSecurityQuestions(SecurityQuestions value) { - this.securityQuestions = value; - } - - /** - * Gets the value of the inactiveTimeOutPreference property. - * - * @return - * possible object is - * {@link InactiveTimeOutPreference } - * - */ - public InactiveTimeOutPreference getInactiveTimeOutPreference() { - return inactiveTimeOutPreference; - } - - /** - * Sets the value of the inactiveTimeOutPreference property. - * - * @param value - * allowed object is - * {@link InactiveTimeOutPreference } - * - */ - public void setInactiveTimeOutPreference(InactiveTimeOutPreference value) { - this.inactiveTimeOutPreference = value; - } - - /** - * Gets the value of the passwordExpirationPreference property. - * - * @return - * possible object is - * {@link PasswordExpirationPreference } - * - */ - public PasswordExpirationPreference getPasswordExpirationPreference() { - return passwordExpirationPreference; - } - - /** - * Sets the value of the passwordExpirationPreference property. - * - * @param value - * allowed object is - * {@link PasswordExpirationPreference } - * - */ - public void setPasswordExpirationPreference(PasswordExpirationPreference value) { - this.passwordExpirationPreference = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SecurityQuestions.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SecurityQuestions.java deleted file mode 100644 index 18293faae..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SecurityQuestions.java +++ /dev/null @@ -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; - - -/** - *

Java class for SecurityQuestions complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SecurityQuestions">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="SecurityQuestion1" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SecretAnswer1" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SecurityQuestion2" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SecretAnswer2" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SecurityQuestion3" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SecretAnswer3" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SecurityQuestions") -public class SecurityQuestions { - - @XmlAttribute(name = "SecurityQuestion1") - protected String securityQuestion1; - @XmlAttribute(name = "SecretAnswer1") - protected String secretAnswer1; - @XmlAttribute(name = "SecurityQuestion2") - protected String securityQuestion2; - @XmlAttribute(name = "SecretAnswer2") - protected String secretAnswer2; - @XmlAttribute(name = "SecurityQuestion3") - protected String securityQuestion3; - @XmlAttribute(name = "SecretAnswer3") - protected String secretAnswer3; - - /** - * Gets the value of the securityQuestion1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecurityQuestion1() { - return securityQuestion1; - } - - /** - * Sets the value of the securityQuestion1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecurityQuestion1(String value) { - this.securityQuestion1 = value; - } - - /** - * Gets the value of the secretAnswer1 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecretAnswer1() { - return secretAnswer1; - } - - /** - * Sets the value of the secretAnswer1 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecretAnswer1(String value) { - this.secretAnswer1 = value; - } - - /** - * Gets the value of the securityQuestion2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecurityQuestion2() { - return securityQuestion2; - } - - /** - * Sets the value of the securityQuestion2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecurityQuestion2(String value) { - this.securityQuestion2 = value; - } - - /** - * Gets the value of the secretAnswer2 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecretAnswer2() { - return secretAnswer2; - } - - /** - * Sets the value of the secretAnswer2 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecretAnswer2(String value) { - this.secretAnswer2 = value; - } - - /** - * Gets the value of the securityQuestion3 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecurityQuestion3() { - return securityQuestion3; - } - - /** - * Sets the value of the securityQuestion3 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecurityQuestion3(String value) { - this.securityQuestion3 = value; - } - - /** - * Gets the value of the secretAnswer3 property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecretAnswer3() { - return secretAnswer3; - } - - /** - * Sets the value of the secretAnswer3 property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecretAnswer3(String value) { - this.secretAnswer3 = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ServiceInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ServiceInfo.java deleted file mode 100644 index 4e909b05b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ServiceInfo.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for ServiceInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ServiceInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="serviceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="serviceVersion" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="serviceStatus" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceInfo", propOrder = { - "serviceName", - "serviceVersion", - "serviceStatus" -}) -public class ServiceInfo { - - protected String serviceName; - protected String serviceVersion; - protected String serviceStatus; - - /** - * Gets the value of the serviceName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServiceName() { - return serviceName; - } - - /** - * Sets the value of the serviceName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServiceName(String value) { - this.serviceName = value; - } - - /** - * Gets the value of the serviceVersion property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServiceVersion() { - return serviceVersion; - } - - /** - * Sets the value of the serviceVersion property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServiceVersion(String value) { - this.serviceVersion = value; - } - - /** - * Gets the value of the serviceStatus property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServiceStatus() { - return serviceStatus; - } - - /** - * Sets the value of the serviceStatus property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServiceStatus(String value) { - this.serviceStatus = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ServiceList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ServiceList.java deleted file mode 100644 index ac62fb177..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ServiceList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ServiceList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ServiceList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="service" type="{http://schema.ultraservice.neustar.com/v01/}ServiceInfo" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ServiceList", propOrder = { - "service" -}) -public class ServiceList { - - protected List service; - - /** - * Gets the value of the service property. - * - *

- * 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 set method for the service property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getService().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ServiceInfo } - * - * - */ - public List getService() { - if (service == null) { - service = new ArrayList(); - } - return this.service; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverConversion.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverConversion.java deleted file mode 100644 index ca6de2f79..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverConversion.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for simpleFailoverConversion. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="simpleFailoverConversion">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="A"/>
- *     <enumeration value="RD"/>
- *     <enumeration value="ADAPTIVE_RESPONSE"/>
- *     <enumeration value="MRD"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "simpleFailoverConversion") -@XmlEnum -public enum SimpleFailoverConversion { - - A, - RD, - ADAPTIVE_RESPONSE, - MRD; - - public String value() { - return name(); - } - - public static SimpleFailoverConversion fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverConversionInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverConversionInfo.java deleted file mode 100644 index d34fdd1a2..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverConversionInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for SimpleFailoverConversionInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SimpleFailoverConversionInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="simpleFailoverPoolKey" type="{http://schema.ultraservice.neustar.com/v01/}SimpleFailoverPoolKey"/>
- *         <element name="conversionType" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverConversion"/>
- *         <element name="keptRecord" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SimpleFailoverConversionInfo", propOrder = { - "simpleFailoverPoolKey", - "conversionType", - "keptRecord" -}) -public class SimpleFailoverConversionInfo { - - @XmlElement(required = true) - protected SimpleFailoverPoolKey simpleFailoverPoolKey; - @XmlElement(required = true) - protected SimpleFailoverConversion conversionType; - protected String keptRecord; - - /** - * Gets the value of the simpleFailoverPoolKey property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolKey } - * - */ - public SimpleFailoverPoolKey getSimpleFailoverPoolKey() { - return simpleFailoverPoolKey; - } - - /** - * Sets the value of the simpleFailoverPoolKey property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolKey } - * - */ - public void setSimpleFailoverPoolKey(SimpleFailoverPoolKey value) { - this.simpleFailoverPoolKey = value; - } - - /** - * Gets the value of the conversionType property. - * - * @return - * possible object is - * {@link SimpleFailoverConversion } - * - */ - public SimpleFailoverConversion getConversionType() { - return conversionType; - } - - /** - * Sets the value of the conversionType property. - * - * @param value - * allowed object is - * {@link SimpleFailoverConversion } - * - */ - public void setConversionType(SimpleFailoverConversion value) { - this.conversionType = value; - } - - /** - * Gets the value of the keptRecord property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getKeptRecord() { - return keptRecord; - } - - /** - * Sets the value of the keptRecord property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setKeptRecord(String value) { - this.keptRecord = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPool.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPool.java deleted file mode 100644 index a5bab6851..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPool.java +++ /dev/null @@ -1,284 +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; - - -/** - *

Java class for SimpleFailoverPool complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SimpleFailoverPool">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="liveRecord" type="{http://schema.ultraservice.neustar.com/v01/}FailoverRecord"/>
- *         <element name="backupRecord" type="{http://schema.ultraservice.neustar.com/v01/}FailoverRecord"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}FailoverMonitor"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold"/>
- *         <element name="status" type="{http://schema.ultraservice.neustar.com/v01/}ARStatusEnum" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SimpleFailoverPool", propOrder = { - "zoneName", - "hostName", - "description", - "liveRecord", - "backupRecord", - "ttl", - "monitor", - "regionThreshold", - "status" -}) -public class SimpleFailoverPool { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected String hostName; - protected String description; - @XmlElement(required = true) - protected FailoverRecord liveRecord; - @XmlElement(required = true) - protected FailoverRecord backupRecord; - @XmlElement(required = true, type = Long.class, nillable = true) - protected Long ttl; - @XmlElement(required = true) - protected FailoverMonitor monitor; - @XmlElement(required = true) - protected SimpleFailoverPoolRegionThreshold regionThreshold; - protected ARStatusEnum status; - - /** - * 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; - } - - /** - * 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 liveRecord property. - * - * @return - * possible object is - * {@link FailoverRecord } - * - */ - public FailoverRecord getLiveRecord() { - return liveRecord; - } - - /** - * Sets the value of the liveRecord property. - * - * @param value - * allowed object is - * {@link FailoverRecord } - * - */ - public void setLiveRecord(FailoverRecord value) { - this.liveRecord = value; - } - - /** - * Gets the value of the backupRecord property. - * - * @return - * possible object is - * {@link FailoverRecord } - * - */ - public FailoverRecord getBackupRecord() { - return backupRecord; - } - - /** - * Sets the value of the backupRecord property. - * - * @param value - * allowed object is - * {@link FailoverRecord } - * - */ - public void setBackupRecord(FailoverRecord value) { - this.backupRecord = 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 monitor property. - * - * @return - * possible object is - * {@link FailoverMonitor } - * - */ - public FailoverMonitor getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link FailoverMonitor } - * - */ - public void setMonitor(FailoverMonitor value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = value; - } - - /** - * Gets the value of the status property. - * - * @return - * possible object is - * {@link ARStatusEnum } - * - */ - public ARStatusEnum getStatus() { - return status; - } - - /** - * Sets the value of the status property. - * - * @param value - * allowed object is - * {@link ARStatusEnum } - * - */ - public void setStatus(ARStatusEnum value) { - this.status = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolAdd.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolAdd.java deleted file mode 100644 index 4d562784c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolAdd.java +++ /dev/null @@ -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; - - -/** - *

Java class for SimpleFailoverPoolAdd complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SimpleFailoverPoolAdd">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="liveRecord" type="{http://schema.ultraservice.neustar.com/v01/}FailoverRecord"/>
- *         <element name="backupRecord" type="{http://schema.ultraservice.neustar.com/v01/}FailoverRecord"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}FailoverMonitor"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SimpleFailoverPoolAdd", propOrder = { - "zoneName", - "hostName", - "description", - "liveRecord", - "backupRecord", - "ttl", - "monitor", - "regionThreshold" -}) -public class SimpleFailoverPoolAdd { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected String hostName; - protected String description; - @XmlElement(required = true) - protected FailoverRecord liveRecord; - @XmlElement(required = true) - protected FailoverRecord backupRecord; - @XmlElement(required = true, type = Long.class, nillable = true) - protected Long ttl; - @XmlElement(required = true) - protected FailoverMonitor monitor; - @XmlElement(required = true) - protected SimpleFailoverPoolRegionThreshold regionThreshold; - - /** - * 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; - } - - /** - * 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 liveRecord property. - * - * @return - * possible object is - * {@link FailoverRecord } - * - */ - public FailoverRecord getLiveRecord() { - return liveRecord; - } - - /** - * Sets the value of the liveRecord property. - * - * @param value - * allowed object is - * {@link FailoverRecord } - * - */ - public void setLiveRecord(FailoverRecord value) { - this.liveRecord = value; - } - - /** - * Gets the value of the backupRecord property. - * - * @return - * possible object is - * {@link FailoverRecord } - * - */ - public FailoverRecord getBackupRecord() { - return backupRecord; - } - - /** - * Sets the value of the backupRecord property. - * - * @param value - * allowed object is - * {@link FailoverRecord } - * - */ - public void setBackupRecord(FailoverRecord value) { - this.backupRecord = 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 monitor property. - * - * @return - * possible object is - * {@link FailoverMonitor } - * - */ - public FailoverMonitor getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link FailoverMonitor } - * - */ - public void setMonitor(FailoverMonitor value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolKey.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolKey.java deleted file mode 100644 index 015a444f1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolKey.java +++ /dev/null @@ -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; - - -/** - *

Java class for SimpleFailoverPoolKey complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SimpleFailoverPoolKey">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="hostName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SimpleFailoverPoolKey", propOrder = { - "zoneName", - "hostName" -}) -public class SimpleFailoverPoolKey { - - @XmlElement(required = true) - protected String zoneName; - @XmlElement(required = true) - protected String hostName; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolList.java deleted file mode 100644 index 95aabc0dd..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolList.java +++ /dev/null @@ -1,126 +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; - - -/** - *

Java class for SimpleFailoverPoolList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SimpleFailoverPoolList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="poolDefinitions" type="{http://schema.ultraservice.neustar.com/v01/}SimpleFailoverPool" maxOccurs="unbounded"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SimpleFailoverPoolList", propOrder = { - "poolDefinitions", - "total", - "offset", - "count" -}) -public class SimpleFailoverPoolList { - - @XmlElement(required = true) - protected List poolDefinitions; - protected int total; - protected int offset; - protected int count; - - /** - * Gets the value of the poolDefinitions property. - * - *

- * 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 set method for the poolDefinitions property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getPoolDefinitions().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SimpleFailoverPool } - * - * - */ - public List getPoolDefinitions() { - if (poolDefinitions == null) { - poolDefinitions = new ArrayList(); - } - return this.poolDefinitions; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolRegionThreshold.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolRegionThreshold.java deleted file mode 100644 index d2649bee1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolRegionThreshold.java +++ /dev/null @@ -1,38 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for simpleFailoverPoolRegionThreshold. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="simpleFailoverPoolRegionThreshold">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="LOW"/>
- *     <enumeration value="HIGH"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "simpleFailoverPoolRegionThreshold") -@XmlEnum -public enum SimpleFailoverPoolRegionThreshold { - - LOW, - HIGH; - - public String value() { - return name(); - } - - public static SimpleFailoverPoolRegionThreshold fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolUpdate.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolUpdate.java deleted file mode 100644 index c8aa15fed..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SimpleFailoverPoolUpdate.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for SimpleFailoverPoolUpdate complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SimpleFailoverPoolUpdate">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *         <element name="liveRecord" type="{http://schema.ultraservice.neustar.com/v01/}FailoverRecordUpdate" minOccurs="0"/>
- *         <element name="backupRecord" type="{http://schema.ultraservice.neustar.com/v01/}FailoverRecordUpdate" minOccurs="0"/>
- *         <element name="ttl" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
- *         <element name="monitor" type="{http://schema.ultraservice.neustar.com/v01/}FailoverMonitorUpdate" minOccurs="0"/>
- *         <element name="regionThreshold" type="{http://schema.ultraservice.neustar.com/v01/}simpleFailoverPoolRegionThreshold" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SimpleFailoverPoolUpdate", propOrder = { - "description", - "liveRecord", - "backupRecord", - "ttl", - "monitor", - "regionThreshold" -}) -public class SimpleFailoverPoolUpdate { - - protected String description; - protected FailoverRecordUpdate liveRecord; - protected FailoverRecordUpdate backupRecord; - protected Long ttl; - protected FailoverMonitorUpdate monitor; - protected SimpleFailoverPoolRegionThreshold regionThreshold; - - /** - * 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 liveRecord property. - * - * @return - * possible object is - * {@link FailoverRecordUpdate } - * - */ - public FailoverRecordUpdate getLiveRecord() { - return liveRecord; - } - - /** - * Sets the value of the liveRecord property. - * - * @param value - * allowed object is - * {@link FailoverRecordUpdate } - * - */ - public void setLiveRecord(FailoverRecordUpdate value) { - this.liveRecord = value; - } - - /** - * Gets the value of the backupRecord property. - * - * @return - * possible object is - * {@link FailoverRecordUpdate } - * - */ - public FailoverRecordUpdate getBackupRecord() { - return backupRecord; - } - - /** - * Sets the value of the backupRecord property. - * - * @param value - * allowed object is - * {@link FailoverRecordUpdate } - * - */ - public void setBackupRecord(FailoverRecordUpdate value) { - this.backupRecord = 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 monitor property. - * - * @return - * possible object is - * {@link FailoverMonitorUpdate } - * - */ - public FailoverMonitorUpdate getMonitor() { - return monitor; - } - - /** - * Sets the value of the monitor property. - * - * @param value - * allowed object is - * {@link FailoverMonitorUpdate } - * - */ - public void setMonitor(FailoverMonitorUpdate value) { - this.monitor = value; - } - - /** - * Gets the value of the regionThreshold property. - * - * @return - * possible object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public SimpleFailoverPoolRegionThreshold getRegionThreshold() { - return regionThreshold; - } - - /** - * Sets the value of the regionThreshold property. - * - * @param value - * allowed object is - * {@link SimpleFailoverPoolRegionThreshold } - * - */ - public void setRegionThreshold(SimpleFailoverPoolRegionThreshold value) { - this.regionThreshold = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SortOrder.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SortOrder.java deleted file mode 100644 index 0b50a63d8..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SortOrder.java +++ /dev/null @@ -1,38 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for sortOrder. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="sortOrder">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="ASC"/>
- *     <enumeration value="DESC"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "sortOrder") -@XmlEnum -public enum SortOrder { - - ASC, - DESC; - - public String value() { - return name(); - } - - public static SortOrder fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIPGroupData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIPGroupData.java deleted file mode 100644 index 652f285e5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIPGroupData.java +++ /dev/null @@ -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; - - -/** - *

Java class for SourceIPGroupData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SourceIPGroupData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="GroupData" type="{http://schema.ultraservice.neustar.com/v01/}GroupData"/>
- *         <element name="SourceIPGroupDetails" type="{http://schema.ultraservice.neustar.com/v01/}SourceIPGroupDetails"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SourceIPGroupData", propOrder = { - "groupData", - "sourceIPGroupDetails" -}) -public class SourceIPGroupData { - - @XmlElement(name = "GroupData", required = true) - protected GroupData groupData; - @XmlElement(name = "SourceIPGroupDetails", required = true, nillable = true) - protected SourceIPGroupDetails sourceIPGroupDetails; - - /** - * Gets the value of the groupData property. - * - * @return - * possible object is - * {@link GroupData } - * - */ - public GroupData getGroupData() { - return groupData; - } - - /** - * Sets the value of the groupData property. - * - * @param value - * allowed object is - * {@link GroupData } - * - */ - public void setGroupData(GroupData value) { - this.groupData = value; - } - - /** - * Gets the value of the sourceIPGroupDetails property. - * - * @return - * possible object is - * {@link SourceIPGroupDetails } - * - */ - public SourceIPGroupDetails getSourceIPGroupDetails() { - return sourceIPGroupDetails; - } - - /** - * Sets the value of the sourceIPGroupDetails property. - * - * @param value - * allowed object is - * {@link SourceIPGroupDetails } - * - */ - public void setSourceIPGroupDetails(SourceIPGroupDetails value) { - this.sourceIPGroupDetails = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIPGroupDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIPGroupDetails.java deleted file mode 100644 index a9ca6248f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIPGroupDetails.java +++ /dev/null @@ -1,128 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for SourceIPGroupDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SourceIPGroupDetails">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SourceIpGroupDefinitionData" type="{http://schema.ultraservice.neustar.com/v01/}SourceIpGroupDefinitionData" maxOccurs="unbounded"/>
- *       </sequence>
- *       <attribute name="groupName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SourceIPGroupDetails", propOrder = { - "sourceIpGroupDefinitionData" -}) -@XmlSeeAlso({ - UpdateSourceIPGroupDetails.class -}) -public class SourceIPGroupDetails { - - @XmlElement(name = "SourceIpGroupDefinitionData", required = true) - protected List sourceIpGroupDefinitionData; - @XmlAttribute(name = "groupName", required = true) - protected String groupName; - @XmlAttribute(name = "description") - protected String description; - - /** - * Gets the value of the sourceIpGroupDefinitionData property. - * - *

- * 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 set method for the sourceIpGroupDefinitionData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSourceIpGroupDefinitionData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SourceIpGroupDefinitionData } - * - * - */ - public List getSourceIpGroupDefinitionData() { - if (sourceIpGroupDefinitionData == null) { - sourceIpGroupDefinitionData = new ArrayList(); - } - return this.sourceIpGroupDefinitionData; - } - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIpGroupDefinitionData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIpGroupDefinitionData.java deleted file mode 100644 index 76fc57bed..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIpGroupDefinitionData.java +++ /dev/null @@ -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; - - -/** - *

Java class for SourceIpGroupDefinitionData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SourceIpGroupDefinitionData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="startIpAddress" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="endIpAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SourceIpGroupDefinitionData") -public class SourceIpGroupDefinitionData { - - @XmlAttribute(name = "startIpAddress", required = true) - protected String startIpAddress; - @XmlAttribute(name = "endIpAddress") - protected String endIpAddress; - - /** - * Gets the value of the startIpAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStartIpAddress() { - return startIpAddress; - } - - /** - * Sets the value of the startIpAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStartIpAddress(String value) { - this.startIpAddress = value; - } - - /** - * Gets the value of the endIpAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getEndIpAddress() { - return endIpAddress; - } - - /** - * Sets the value of the endIpAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setEndIpAddress(String value) { - this.endIpAddress = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIpGroupDefinitionList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIpGroupDefinitionList.java deleted file mode 100644 index 1a23231c1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SourceIpGroupDefinitionList.java +++ /dev/null @@ -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; - - -/** - *

Java class for SourceIpGroupDefinitionList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SourceIpGroupDefinitionList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="SourceIpGroupDefinitionData" type="{http://schema.ultraservice.neustar.com/v01/}SourceIpGroupDefinitionData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SourceIpGroupDefinitionList", propOrder = { - "sourceIpGroupDefinitionData" -}) -public class SourceIpGroupDefinitionList { - - @XmlElement(name = "SourceIpGroupDefinitionData", required = true) - protected List sourceIpGroupDefinitionData; - - /** - * Gets the value of the sourceIpGroupDefinitionData property. - * - *

- * 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 set method for the sourceIpGroupDefinitionData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getSourceIpGroupDefinitionData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link SourceIpGroupDefinitionData } - * - * - */ - public List getSourceIpGroupDefinitionData() { - if (sourceIpGroupDefinitionData == null) { - sourceIpGroupDefinitionData = new ArrayList(); - } - return this.sourceIpGroupDefinitionData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/StatesInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/StatesInfo.java deleted file mode 100644 index 06c052cac..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/StatesInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for StatesInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="StatesInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="StateName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "StatesInfo") -public class StatesInfo { - - @XmlAttribute(name = "StateName") - protected String stateName; - - /** - * Gets the value of the stateName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getStateName() { - return stateName; - } - - /** - * Sets the value of the stateName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setStateName(String value) { - this.stateName = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Status.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Status.java deleted file mode 100644 index 5fd075f68..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/Status.java +++ /dev/null @@ -1,40 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for Status. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="Status">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="SUCCESSFUL"/>
- *     <enumeration value="FAILED"/>
- *     <enumeration value="REFRESH"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "Status") -@XmlEnum -public enum Status { - - SUCCESSFUL, - FAILED, - REFRESH; - - public String value() { - return name(); - } - - public static Status fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/StatusEnum.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/StatusEnum.java deleted file mode 100644 index 54922011a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/StatusEnum.java +++ /dev/null @@ -1,42 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for StatusEnum. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="StatusEnum">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="OK"/>
- *     <enumeration value="WARNING"/>
- *     <enumeration value="CRITICAL"/>
- *     <enumeration value="FAILURE"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "StatusEnum") -@XmlEnum -public enum StatusEnum { - - OK, - WARNING, - CRITICAL, - FAILURE; - - public String value() { - return name(); - } - - public static StatusEnum fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SuspendZone.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SuspendZone.java deleted file mode 100644 index 223a147fa..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SuspendZone.java +++ /dev/null @@ -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; - - -/** - *

Java class for SuspendZone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SuspendZone">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="suspendZoneRequest" type="{http://schema.ultraservice.neustar.com/v01/}SuspendZoneRequest"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SuspendZone", propOrder = { - "suspendZoneRequest" -}) -public class SuspendZone { - - @XmlElement(required = true) - protected SuspendZoneRequest suspendZoneRequest; - - /** - * Gets the value of the suspendZoneRequest property. - * - * @return - * possible object is - * {@link SuspendZoneRequest } - * - */ - public SuspendZoneRequest getSuspendZoneRequest() { - return suspendZoneRequest; - } - - /** - * Sets the value of the suspendZoneRequest property. - * - * @param value - * allowed object is - * {@link SuspendZoneRequest } - * - */ - public void setSuspendZoneRequest(SuspendZoneRequest value) { - this.suspendZoneRequest = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SuspendZoneRequest.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SuspendZoneRequest.java deleted file mode 100644 index 71e6fba1b..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/SuspendZoneRequest.java +++ /dev/null @@ -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; - - -/** - *

Java class for SuspendZoneRequest complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="SuspendZoneRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "SuspendZoneRequest", propOrder = { - "zoneName" -}) -public class SuspendZoneRequest { - - @XmlElement(required = true) - protected String zoneName; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPCriteria.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPCriteria.java deleted file mode 100644 index 88162aceb..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPCriteria.java +++ /dev/null @@ -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.XmlType; - - -/** - *

Java class for TCPCriteria complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TCPCriteria">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="connectTime" type="{http://www.w3.org/2001/XMLSchema}int"/>
- *         <element name="connectTimeAverage" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TCPCriteria", propOrder = { - "connectTime", - "connectTimeAverage" -}) -public class TCPCriteria { - - protected int connectTime; - protected Integer connectTimeAverage; - - /** - * Gets the value of the connectTime property. - * - */ - public int getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - */ - public void setConnectTime(int value) { - this.connectTime = value; - } - - /** - * Gets the value of the connectTimeAverage property. - * - * @return - * possible object is - * {@link Integer } - * - */ - public Integer getConnectTimeAverage() { - return connectTimeAverage; - } - - /** - * Sets the value of the connectTimeAverage property. - * - * @param value - * allowed object is - * {@link Integer } - * - */ - public void setConnectTimeAverage(Integer value) { - this.connectTimeAverage = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPProbeData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPProbeData.java deleted file mode 100644 index 091b37b28..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPProbeData.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for TCPProbeData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TCPProbeData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="port" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="controlIPAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="connectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="failAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="criticalAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="warningAverageConnectTime" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TCPProbeData") -public class TCPProbeData { - - @XmlAttribute(name = "port") - protected String port; - @XmlAttribute(name = "controlIPAddress") - protected String controlIPAddress; - @XmlAttribute(name = "connectTime") - protected String connectTime; - @XmlAttribute(name = "failConnectTime") - protected String failConnectTime; - @XmlAttribute(name = "criticalConnectTime") - protected String criticalConnectTime; - @XmlAttribute(name = "warningConnectTime") - protected String warningConnectTime; - @XmlAttribute(name = "failAverageConnectTime") - protected String failAverageConnectTime; - @XmlAttribute(name = "criticalAverageConnectTime") - protected String criticalAverageConnectTime; - @XmlAttribute(name = "warningAverageConnectTime") - protected String warningAverageConnectTime; - - /** - * Gets the value of the port property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPort(String value) { - this.port = value; - } - - /** - * Gets the value of the controlIPAddress property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getControlIPAddress() { - return controlIPAddress; - } - - /** - * Sets the value of the controlIPAddress property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setControlIPAddress(String value) { - this.controlIPAddress = value; - } - - /** - * Gets the value of the connectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getConnectTime() { - return connectTime; - } - - /** - * Sets the value of the connectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setConnectTime(String value) { - this.connectTime = value; - } - - /** - * Gets the value of the failConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailConnectTime() { - return failConnectTime; - } - - /** - * Sets the value of the failConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailConnectTime(String value) { - this.failConnectTime = value; - } - - /** - * Gets the value of the criticalConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalConnectTime() { - return criticalConnectTime; - } - - /** - * Sets the value of the criticalConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalConnectTime(String value) { - this.criticalConnectTime = value; - } - - /** - * Gets the value of the warningConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningConnectTime() { - return warningConnectTime; - } - - /** - * Sets the value of the warningConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningConnectTime(String value) { - this.warningConnectTime = value; - } - - /** - * Gets the value of the failAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFailAverageConnectTime() { - return failAverageConnectTime; - } - - /** - * Sets the value of the failAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFailAverageConnectTime(String value) { - this.failAverageConnectTime = value; - } - - /** - * Gets the value of the criticalAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCriticalAverageConnectTime() { - return criticalAverageConnectTime; - } - - /** - * Sets the value of the criticalAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCriticalAverageConnectTime(String value) { - this.criticalAverageConnectTime = value; - } - - /** - * Gets the value of the warningAverageConnectTime property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWarningAverageConnectTime() { - return warningAverageConnectTime; - } - - /** - * Sets the value of the warningAverageConnectTime property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWarningAverageConnectTime(String value) { - this.warningAverageConnectTime = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPTransaction.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPTransaction.java deleted file mode 100644 index 91fa90ed0..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TCPTransaction.java +++ /dev/null @@ -1,161 +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; - - -/** - *

Java class for TCPTransaction complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TCPTransaction">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="warningCriteria" type="{http://schema.ultraservice.neustar.com/v01/}TCPCriteria" minOccurs="0"/>
- *         <element name="criticalCriteria" type="{http://schema.ultraservice.neustar.com/v01/}TCPCriteria" minOccurs="0"/>
- *         <element name="failCriteria" type="{http://schema.ultraservice.neustar.com/v01/}TCPCriteria" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="controlIP" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TCPTransaction", propOrder = { - "warningCriteria", - "criticalCriteria", - "failCriteria" -}) -public class TCPTransaction { - - protected TCPCriteria warningCriteria; - protected TCPCriteria criticalCriteria; - protected TCPCriteria failCriteria; - @XmlAttribute(name = "port", required = true) - protected int port; - @XmlAttribute(name = "controlIP") - protected String controlIP; - - /** - * Gets the value of the warningCriteria property. - * - * @return - * possible object is - * {@link TCPCriteria } - * - */ - public TCPCriteria getWarningCriteria() { - return warningCriteria; - } - - /** - * Sets the value of the warningCriteria property. - * - * @param value - * allowed object is - * {@link TCPCriteria } - * - */ - public void setWarningCriteria(TCPCriteria value) { - this.warningCriteria = value; - } - - /** - * Gets the value of the criticalCriteria property. - * - * @return - * possible object is - * {@link TCPCriteria } - * - */ - public TCPCriteria getCriticalCriteria() { - return criticalCriteria; - } - - /** - * Sets the value of the criticalCriteria property. - * - * @param value - * allowed object is - * {@link TCPCriteria } - * - */ - public void setCriticalCriteria(TCPCriteria value) { - this.criticalCriteria = value; - } - - /** - * Gets the value of the failCriteria property. - * - * @return - * possible object is - * {@link TCPCriteria } - * - */ - public TCPCriteria getFailCriteria() { - return failCriteria; - } - - /** - * Sets the value of the failCriteria property. - * - * @param value - * allowed object is - * {@link TCPCriteria } - * - */ - public void setFailCriteria(TCPCriteria value) { - this.failCriteria = value; - } - - /** - * Gets the value of the port property. - * - */ - public int getPort() { - return port; - } - - /** - * Sets the value of the port property. - * - */ - public void setPort(int value) { - this.port = value; - } - - /** - * Gets the value of the controlIP property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getControlIP() { - return controlIP; - } - - /** - * Sets the value of the controlIP property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setControlIP(String value) { - this.controlIP = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskId.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskId.java deleted file mode 100644 index f665774f1..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskId.java +++ /dev/null @@ -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; - - -/** - *

Java class for TaskId complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TaskId">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="guid" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TaskId", propOrder = { - "guid" -}) -public class TaskId { - - @XmlElement(required = true) - 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskStatus.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskStatus.java deleted file mode 100644 index b8484736e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskStatus.java +++ /dev/null @@ -1,146 +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; -import com.neustar.ultra.api.webservice.v01.Code; - - -/** - *

Java class for TaskStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TaskStatus">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="id" type="{http://schema.ultraservice.neustar.com/v01/}TaskId"/>
- *         <element name="code" type="{http://webservice.api.ultra.neustar.com/v01/}code"/>
- *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *         <element name="resultUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TaskStatus", propOrder = { - "id", - "code", - "message", - "resultUrl" -}) -public class TaskStatus { - - @XmlElement(required = true) - protected TaskId id; - @XmlElement(required = true) - protected Code code; - @XmlElement(required = true) - protected String message; - protected String resultUrl; - - /** - * Gets the value of the id property. - * - * @return - * possible object is - * {@link TaskId } - * - */ - public TaskId getId() { - return id; - } - - /** - * Sets the value of the id property. - * - * @param value - * allowed object is - * {@link TaskId } - * - */ - public void setId(TaskId value) { - this.id = value; - } - - /** - * Gets the value of the code property. - * - * @return - * possible object is - * {@link Code } - * - */ - public Code getCode() { - return code; - } - - /** - * Sets the value of the code property. - * - * @param value - * allowed object is - * {@link Code } - * - */ - public void setCode(Code value) { - this.code = 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 resultUrl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getResultUrl() { - return resultUrl; - } - - /** - * Sets the value of the resultUrl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setResultUrl(String value) { - this.resultUrl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskStatusList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskStatusList.java deleted file mode 100644 index 79e136a6f..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TaskStatusList.java +++ /dev/null @@ -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; - - -/** - *

Java class for TaskStatusList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="TaskStatusList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="taskStatus" type="{http://schema.ultraservice.neustar.com/v01/}TaskStatus" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "TaskStatusList", propOrder = { - "taskStatus" -}) -public class TaskStatusList { - - @XmlElement(required = true) - protected List taskStatus; - - /** - * Gets the value of the taskStatus property. - * - *

- * 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 set method for the taskStatus property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getTaskStatus().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link TaskStatus } - * - * - */ - public List getTaskStatus() { - if (taskStatus == null) { - taskStatus = new ArrayList(); - } - return this.taskStatus; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TieBreak.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TieBreak.java deleted file mode 100644 index 2f1fd5d7c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TieBreak.java +++ /dev/null @@ -1,38 +0,0 @@ - -package com.neustar.ultraservice.schema.v01; - -import javax.xml.bind.annotation.XmlEnum; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for TieBreak. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="TieBreak">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="GEOLOCATION"/>
- *     <enumeration value="SOURCEIP"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TieBreak") -@XmlEnum -public enum TieBreak { - - GEOLOCATION, - SOURCEIP; - - public String value() { - return name(); - } - - public static TieBreak fromValue(String v) { - return valueOf(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TimeZone.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TimeZone.java deleted file mode 100644 index bdae88ad5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/TimeZone.java +++ /dev/null @@ -1,302 +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; - - -/** - *

Java class for TimeZone. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="TimeZone">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="(GMT-11.00) Midway Island / Samoa"/>
- *     <enumeration value="(GMT-10.00) Hawaii"/>
- *     <enumeration value="(GMT-09.00) Alaska"/>
- *     <enumeration value="(GMT-08.00) Pacific Time (US & Canada)"/>
- *     <enumeration value="(GMT-08.00) Tijuana / Baja California"/>
- *     <enumeration value="(GMT-07.00) Arizona"/>
- *     <enumeration value="(GMT-07.00) Chihuahua / La Paz / Mazatlan - New"/>
- *     <enumeration value="(GMT-07.00) Chihuahua / La Paz / Mazatlan - Old"/>
- *     <enumeration value="(GMT-07.00) Mountain Time (US & Canada)"/>
- *     <enumeration value="(GMT-06.00) Central America"/>
- *     <enumeration value="(GMT-06.00) Central Time (US & Canada)"/>
- *     <enumeration value="(GMT-06.00) Guadalajara / Mexico City / Monterrey - New"/>
- *     <enumeration value="(GMT-06.00) Guadalajara / Mexico City / Monterrey - Old"/>
- *     <enumeration value="(GMT-06.00) Saskatchewan"/>
- *     <enumeration value="(GMT-05.00) Bogota / Lima / Quito / Rio Branco"/>
- *     <enumeration value="(GMT-05.00) Eastern Time (US & Canada)"/>
- *     <enumeration value="(GMT-05.00) Indiana (East)"/>
- *     <enumeration value="(GMT-04.00) Atlantic Time (Canada)"/>
- *     <enumeration value="(GMT-04.00) Caracas / La Paz"/>
- *     <enumeration value="(GMT-04.00) Manaus"/>
- *     <enumeration value="(GMT-04.00) Santiago"/>
- *     <enumeration value="(GMT-03.30) Newfoundland"/>
- *     <enumeration value="(GMT-03.00) Brasilia"/>
- *     <enumeration value="(GMT-03.00) Buenos Aires / Georgetown"/>
- *     <enumeration value="(GMT-03.00) Greenland"/>
- *     <enumeration value="(GMT-03.00) Montevideo"/>
- *     <enumeration value="(GMT-02.00) Mid-Atlantic"/>
- *     <enumeration value="(GMT-01.00) Azores"/>
- *     <enumeration value="(GMT-01.00) Cape Verde Is."/>
- *     <enumeration value="(GMT) Casablanca / Monrovia / Reykjavik"/>
- *     <enumeration value="(GMT) Greenwich Mean Time - Dublin / Edinburgh / Lisbon / London"/>
- *     <enumeration value="(GMT) Greenwich Mean Time"/>
- *     <enumeration value="(GMT+01.00) Amsterdam / Berlin / Bern / Rome / Stockholm / Vienna"/>
- *     <enumeration value="(GMT+01.00) Belgrade / Bratislava / Budapest / Ljubljana / Prague"/>
- *     <enumeration value="(GMT+01.00) Brussels / Copenhagen / Madrid / Paris"/>
- *     <enumeration value="(GMT+01.00) Sarajevo / Skopje / Warsaw / Zagreb"/>
- *     <enumeration value="(GMT+01.00) West Central Africa"/>
- *     <enumeration value="(GMT+02.00) Amman"/>
- *     <enumeration value="(GMT+02.00) Athens / Bucharest / Istanbul"/>
- *     <enumeration value="(GMT+02.00) Beirut"/>
- *     <enumeration value="(GMT+02.00) Cairo"/>
- *     <enumeration value="(GMT+02.00) Harare / Pretoria"/>
- *     <enumeration value="(GMT+02.00) Helsinki / Kyiv / Riga / Sofia / Tallinn / Vilnius"/>
- *     <enumeration value="(GMT+02.00) Jerusalem"/>
- *     <enumeration value="(GMT+02.00) Minsk"/>
- *     <enumeration value="(GMT+02.00) Windhoek"/>
- *     <enumeration value="(GMT+03.00) Baghdad"/>
- *     <enumeration value="(GMT+03.00) Kuwait / Riyadh"/>
- *     <enumeration value="(GMT+03.00) Moscow / St. Petersburg / Volgograd"/>
- *     <enumeration value="(GMT+03.00) Nairobi"/>
- *     <enumeration value="(GMT+03.00) Tbilisi"/>
- *     <enumeration value="(GMT+03.30) Tehran"/>
- *     <enumeration value="(GMT+04.00) Abu Dhabi / Muscat"/>
- *     <enumeration value="(GMT+04.00) Baku"/>
- *     <enumeration value="(GMT+04.00) Yerevan"/>
- *     <enumeration value="(GMT+04.30) Kabul"/>
- *     <enumeration value="(GMT+05.00) Ekaterinburg"/>
- *     <enumeration value="(GMT+05.00) Islamabad / Karachi / Tashkent"/>
- *     <enumeration value="(GMT+05.30) Chennai / Kolkata / Mumbai / New Delhi"/>
- *     <enumeration value="(GMT+05.30) Sri Jayawardenepura"/>
- *     <enumeration value="(GMT+05.45) Kathmandu"/>
- *     <enumeration value="(GMT+06.00) Almaty / Novosibirsk"/>
- *     <enumeration value="(GMT+06.00) Astana / Dhaka"/>
- *     <enumeration value="(GMT+06.30) Yangon (Rangoon)"/>
- *     <enumeration value="(GMT+07.00) Bangkok / Hanoi / Jakarta"/>
- *     <enumeration value="(GMT+07.00) Krasnoyarsk"/>
- *     <enumeration value="(GMT+08.00) Beijing / Chongqing / Hong Kong / Urumqi"/>
- *     <enumeration value="(GMT+08.00) Irkutsk / Ulaan Bataar"/>
- *     <enumeration value="(GMT+08.00) Kuala Lumpur / Singapore"/>
- *     <enumeration value="(GMT+08.00) Perth"/>
- *     <enumeration value="(GMT+08.00) Taipei"/>
- *     <enumeration value="(GMT+09.00) Osaka / Sapporo / Tokyo"/>
- *     <enumeration value="(GMT+09.00) Seoul"/>
- *     <enumeration value="(GMT+09.00) Yakutsk"/>
- *     <enumeration value="(GMT+09.30) Adelaide"/>
- *     <enumeration value="(GMT+09.30) Darwin"/>
- *     <enumeration value="(GMT+10.00) Brisbane"/>
- *     <enumeration value="(GMT+10.00) Canberra / Melbourne / Sydney"/>
- *     <enumeration value="(GMT+10.00) Guam / Port Moresby"/>
- *     <enumeration value="(GMT+10.00) Hobart"/>
- *     <enumeration value="(GMT+10.00) Vladivostok"/>
- *     <enumeration value="(GMT+11.00) Magadan / Solomon Is. / New Caledonia"/>
- *     <enumeration value="(GMT+12.00) Auckland / Wellington"/>
- *     <enumeration value="(GMT+12.00) Fiji / Kamchatka / Marshall Is."/>
- *     <enumeration value="(GMT+13.00) Nuku'alofa"/>
- *     <enumeration value="GMT"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "TimeZone") -@XmlEnum -public enum TimeZone { - - @XmlEnumValue("(GMT-11.00) Midway Island / Samoa") - GMT_11_00_MIDWAY_ISLAND_SAMOA("(GMT-11.00) Midway Island / Samoa"), - @XmlEnumValue("(GMT-10.00) Hawaii") - GMT_10_00_HAWAII("(GMT-10.00) Hawaii"), - @XmlEnumValue("(GMT-09.00) Alaska") - GMT_09_00_ALASKA("(GMT-09.00) Alaska"), - @XmlEnumValue("(GMT-08.00) Pacific Time (US & Canada)") - GMT_08_00_PACIFIC_TIME_US_CANADA("(GMT-08.00) Pacific Time (US & Canada)"), - @XmlEnumValue("(GMT-08.00) Tijuana / Baja California") - GMT_08_00_TIJUANA_BAJA_CALIFORNIA("(GMT-08.00) Tijuana / Baja California"), - @XmlEnumValue("(GMT-07.00) Arizona") - GMT_07_00_ARIZONA("(GMT-07.00) Arizona"), - @XmlEnumValue("(GMT-07.00) Chihuahua / La Paz / Mazatlan - New") - GMT_07_00_CHIHUAHUA_LA_PAZ_MAZATLAN_NEW("(GMT-07.00) Chihuahua / La Paz / Mazatlan - New"), - @XmlEnumValue("(GMT-07.00) Chihuahua / La Paz / Mazatlan - Old") - GMT_07_00_CHIHUAHUA_LA_PAZ_MAZATLAN_OLD("(GMT-07.00) Chihuahua / La Paz / Mazatlan - Old"), - @XmlEnumValue("(GMT-07.00) Mountain Time (US & Canada)") - GMT_07_00_MOUNTAIN_TIME_US_CANADA("(GMT-07.00) Mountain Time (US & Canada)"), - @XmlEnumValue("(GMT-06.00) Central America") - GMT_06_00_CENTRAL_AMERICA("(GMT-06.00) Central America"), - @XmlEnumValue("(GMT-06.00) Central Time (US & Canada)") - GMT_06_00_CENTRAL_TIME_US_CANADA("(GMT-06.00) Central Time (US & Canada)"), - @XmlEnumValue("(GMT-06.00) Guadalajara / Mexico City / Monterrey - New") - GMT_06_00_GUADALAJARA_MEXICO_CITY_MONTERREY_NEW("(GMT-06.00) Guadalajara / Mexico City / Monterrey - New"), - @XmlEnumValue("(GMT-06.00) Guadalajara / Mexico City / Monterrey - Old") - GMT_06_00_GUADALAJARA_MEXICO_CITY_MONTERREY_OLD("(GMT-06.00) Guadalajara / Mexico City / Monterrey - Old"), - @XmlEnumValue("(GMT-06.00) Saskatchewan") - GMT_06_00_SASKATCHEWAN("(GMT-06.00) Saskatchewan"), - @XmlEnumValue("(GMT-05.00) Bogota / Lima / Quito / Rio Branco") - GMT_05_00_BOGOTA_LIMA_QUITO_RIO_BRANCO("(GMT-05.00) Bogota / Lima / Quito / Rio Branco"), - @XmlEnumValue("(GMT-05.00) Eastern Time (US & Canada)") - GMT_05_00_EASTERN_TIME_US_CANADA("(GMT-05.00) Eastern Time (US & Canada)"), - @XmlEnumValue("(GMT-05.00) Indiana (East)") - GMT_05_00_INDIANA_EAST("(GMT-05.00) Indiana (East)"), - @XmlEnumValue("(GMT-04.00) Atlantic Time (Canada)") - GMT_04_00_ATLANTIC_TIME_CANADA("(GMT-04.00) Atlantic Time (Canada)"), - @XmlEnumValue("(GMT-04.00) Caracas / La Paz") - GMT_04_00_CARACAS_LA_PAZ("(GMT-04.00) Caracas / La Paz"), - @XmlEnumValue("(GMT-04.00) Manaus") - GMT_04_00_MANAUS("(GMT-04.00) Manaus"), - @XmlEnumValue("(GMT-04.00) Santiago") - GMT_04_00_SANTIAGO("(GMT-04.00) Santiago"), - @XmlEnumValue("(GMT-03.30) Newfoundland") - GMT_03_30_NEWFOUNDLAND("(GMT-03.30) Newfoundland"), - @XmlEnumValue("(GMT-03.00) Brasilia") - GMT_03_00_BRASILIA("(GMT-03.00) Brasilia"), - @XmlEnumValue("(GMT-03.00) Buenos Aires / Georgetown") - GMT_03_00_BUENOS_AIRES_GEORGETOWN("(GMT-03.00) Buenos Aires / Georgetown"), - @XmlEnumValue("(GMT-03.00) Greenland") - GMT_03_00_GREENLAND("(GMT-03.00) Greenland"), - @XmlEnumValue("(GMT-03.00) Montevideo") - GMT_03_00_MONTEVIDEO("(GMT-03.00) Montevideo"), - @XmlEnumValue("(GMT-02.00) Mid-Atlantic") - GMT_02_00_MID_ATLANTIC("(GMT-02.00) Mid-Atlantic"), - @XmlEnumValue("(GMT-01.00) Azores") - GMT_01_00_AZORES("(GMT-01.00) Azores"), - @XmlEnumValue("(GMT-01.00) Cape Verde Is.") - GMT_01_00_CAPE_VERDE_IS("(GMT-01.00) Cape Verde Is."), - @XmlEnumValue("(GMT) Casablanca / Monrovia / Reykjavik") - GMT_CASABLANCA_MONROVIA_REYKJAVIK("(GMT) Casablanca / Monrovia / Reykjavik"), - @XmlEnumValue("(GMT) Greenwich Mean Time - Dublin / Edinburgh / Lisbon / London") - GMT_GREENWICH_MEAN_TIME_DUBLIN_EDINBURGH_LISBON_LONDON("(GMT) Greenwich Mean Time - Dublin / Edinburgh / Lisbon / London"), - @XmlEnumValue("(GMT) Greenwich Mean Time") - GMT_GREENWICH_MEAN_TIME("(GMT) Greenwich Mean Time"), - @XmlEnumValue("(GMT+01.00) Amsterdam / Berlin / Bern / Rome / Stockholm / Vienna") - GMT_01_00_AMSTERDAM_BERLIN_BERN_ROME_STOCKHOLM_VIENNA("(GMT+01.00) Amsterdam / Berlin / Bern / Rome / Stockholm / Vienna"), - @XmlEnumValue("(GMT+01.00) Belgrade / Bratislava / Budapest / Ljubljana / Prague") - GMT_01_00_BELGRADE_BRATISLAVA_BUDAPEST_LJUBLJANA_PRAGUE("(GMT+01.00) Belgrade / Bratislava / Budapest / Ljubljana / Prague"), - @XmlEnumValue("(GMT+01.00) Brussels / Copenhagen / Madrid / Paris") - GMT_01_00_BRUSSELS_COPENHAGEN_MADRID_PARIS("(GMT+01.00) Brussels / Copenhagen / Madrid / Paris"), - @XmlEnumValue("(GMT+01.00) Sarajevo / Skopje / Warsaw / Zagreb") - GMT_01_00_SARAJEVO_SKOPJE_WARSAW_ZAGREB("(GMT+01.00) Sarajevo / Skopje / Warsaw / Zagreb"), - @XmlEnumValue("(GMT+01.00) West Central Africa") - GMT_01_00_WEST_CENTRAL_AFRICA("(GMT+01.00) West Central Africa"), - @XmlEnumValue("(GMT+02.00) Amman") - GMT_02_00_AMMAN("(GMT+02.00) Amman"), - @XmlEnumValue("(GMT+02.00) Athens / Bucharest / Istanbul") - GMT_02_00_ATHENS_BUCHAREST_ISTANBUL("(GMT+02.00) Athens / Bucharest / Istanbul"), - @XmlEnumValue("(GMT+02.00) Beirut") - GMT_02_00_BEIRUT("(GMT+02.00) Beirut"), - @XmlEnumValue("(GMT+02.00) Cairo") - GMT_02_00_CAIRO("(GMT+02.00) Cairo"), - @XmlEnumValue("(GMT+02.00) Harare / Pretoria") - GMT_02_00_HARARE_PRETORIA("(GMT+02.00) Harare / Pretoria"), - @XmlEnumValue("(GMT+02.00) Helsinki / Kyiv / Riga / Sofia / Tallinn / Vilnius") - GMT_02_00_HELSINKI_KYIV_RIGA_SOFIA_TALLINN_VILNIUS("(GMT+02.00) Helsinki / Kyiv / Riga / Sofia / Tallinn / Vilnius"), - @XmlEnumValue("(GMT+02.00) Jerusalem") - GMT_02_00_JERUSALEM("(GMT+02.00) Jerusalem"), - @XmlEnumValue("(GMT+02.00) Minsk") - GMT_02_00_MINSK("(GMT+02.00) Minsk"), - @XmlEnumValue("(GMT+02.00) Windhoek") - GMT_02_00_WINDHOEK("(GMT+02.00) Windhoek"), - @XmlEnumValue("(GMT+03.00) Baghdad") - GMT_03_00_BAGHDAD("(GMT+03.00) Baghdad"), - @XmlEnumValue("(GMT+03.00) Kuwait / Riyadh") - GMT_03_00_KUWAIT_RIYADH("(GMT+03.00) Kuwait / Riyadh"), - @XmlEnumValue("(GMT+03.00) Moscow / St. Petersburg / Volgograd") - GMT_03_00_MOSCOW_ST_PETERSBURG_VOLGOGRAD("(GMT+03.00) Moscow / St. Petersburg / Volgograd"), - @XmlEnumValue("(GMT+03.00) Nairobi") - GMT_03_00_NAIROBI("(GMT+03.00) Nairobi"), - @XmlEnumValue("(GMT+03.00) Tbilisi") - GMT_03_00_TBILISI("(GMT+03.00) Tbilisi"), - @XmlEnumValue("(GMT+03.30) Tehran") - GMT_03_30_TEHRAN("(GMT+03.30) Tehran"), - @XmlEnumValue("(GMT+04.00) Abu Dhabi / Muscat") - GMT_04_00_ABU_DHABI_MUSCAT("(GMT+04.00) Abu Dhabi / Muscat"), - @XmlEnumValue("(GMT+04.00) Baku") - GMT_04_00_BAKU("(GMT+04.00) Baku"), - @XmlEnumValue("(GMT+04.00) Yerevan") - GMT_04_00_YEREVAN("(GMT+04.00) Yerevan"), - @XmlEnumValue("(GMT+04.30) Kabul") - GMT_04_30_KABUL("(GMT+04.30) Kabul"), - @XmlEnumValue("(GMT+05.00) Ekaterinburg") - GMT_05_00_EKATERINBURG("(GMT+05.00) Ekaterinburg"), - @XmlEnumValue("(GMT+05.00) Islamabad / Karachi / Tashkent") - GMT_05_00_ISLAMABAD_KARACHI_TASHKENT("(GMT+05.00) Islamabad / Karachi / Tashkent"), - @XmlEnumValue("(GMT+05.30) Chennai / Kolkata / Mumbai / New Delhi") - GMT_05_30_CHENNAI_KOLKATA_MUMBAI_NEW_DELHI("(GMT+05.30) Chennai / Kolkata / Mumbai / New Delhi"), - @XmlEnumValue("(GMT+05.30) Sri Jayawardenepura") - GMT_05_30_SRI_JAYAWARDENEPURA("(GMT+05.30) Sri Jayawardenepura"), - @XmlEnumValue("(GMT+05.45) Kathmandu") - GMT_05_45_KATHMANDU("(GMT+05.45) Kathmandu"), - @XmlEnumValue("(GMT+06.00) Almaty / Novosibirsk") - GMT_06_00_ALMATY_NOVOSIBIRSK("(GMT+06.00) Almaty / Novosibirsk"), - @XmlEnumValue("(GMT+06.00) Astana / Dhaka") - GMT_06_00_ASTANA_DHAKA("(GMT+06.00) Astana / Dhaka"), - @XmlEnumValue("(GMT+06.30) Yangon (Rangoon)") - GMT_06_30_YANGON_RANGOON("(GMT+06.30) Yangon (Rangoon)"), - @XmlEnumValue("(GMT+07.00) Bangkok / Hanoi / Jakarta") - GMT_07_00_BANGKOK_HANOI_JAKARTA("(GMT+07.00) Bangkok / Hanoi / Jakarta"), - @XmlEnumValue("(GMT+07.00) Krasnoyarsk") - GMT_07_00_KRASNOYARSK("(GMT+07.00) Krasnoyarsk"), - @XmlEnumValue("(GMT+08.00) Beijing / Chongqing / Hong Kong / Urumqi") - GMT_08_00_BEIJING_CHONGQING_HONG_KONG_URUMQI("(GMT+08.00) Beijing / Chongqing / Hong Kong / Urumqi"), - @XmlEnumValue("(GMT+08.00) Irkutsk / Ulaan Bataar") - GMT_08_00_IRKUTSK_ULAAN_BATAAR("(GMT+08.00) Irkutsk / Ulaan Bataar"), - @XmlEnumValue("(GMT+08.00) Kuala Lumpur / Singapore") - GMT_08_00_KUALA_LUMPUR_SINGAPORE("(GMT+08.00) Kuala Lumpur / Singapore"), - @XmlEnumValue("(GMT+08.00) Perth") - GMT_08_00_PERTH("(GMT+08.00) Perth"), - @XmlEnumValue("(GMT+08.00) Taipei") - GMT_08_00_TAIPEI("(GMT+08.00) Taipei"), - @XmlEnumValue("(GMT+09.00) Osaka / Sapporo / Tokyo") - GMT_09_00_OSAKA_SAPPORO_TOKYO("(GMT+09.00) Osaka / Sapporo / Tokyo"), - @XmlEnumValue("(GMT+09.00) Seoul") - GMT_09_00_SEOUL("(GMT+09.00) Seoul"), - @XmlEnumValue("(GMT+09.00) Yakutsk") - GMT_09_00_YAKUTSK("(GMT+09.00) Yakutsk"), - @XmlEnumValue("(GMT+09.30) Adelaide") - GMT_09_30_ADELAIDE("(GMT+09.30) Adelaide"), - @XmlEnumValue("(GMT+09.30) Darwin") - GMT_09_30_DARWIN("(GMT+09.30) Darwin"), - @XmlEnumValue("(GMT+10.00) Brisbane") - GMT_10_00_BRISBANE("(GMT+10.00) Brisbane"), - @XmlEnumValue("(GMT+10.00) Canberra / Melbourne / Sydney") - GMT_10_00_CANBERRA_MELBOURNE_SYDNEY("(GMT+10.00) Canberra / Melbourne / Sydney"), - @XmlEnumValue("(GMT+10.00) Guam / Port Moresby") - GMT_10_00_GUAM_PORT_MORESBY("(GMT+10.00) Guam / Port Moresby"), - @XmlEnumValue("(GMT+10.00) Hobart") - GMT_10_00_HOBART("(GMT+10.00) Hobart"), - @XmlEnumValue("(GMT+10.00) Vladivostok") - GMT_10_00_VLADIVOSTOK("(GMT+10.00) Vladivostok"), - @XmlEnumValue("(GMT+11.00) Magadan / Solomon Is. / New Caledonia") - GMT_11_00_MAGADAN_SOLOMON_IS_NEW_CALEDONIA("(GMT+11.00) Magadan / Solomon Is. / New Caledonia"), - @XmlEnumValue("(GMT+12.00) Auckland / Wellington") - GMT_12_00_AUCKLAND_WELLINGTON("(GMT+12.00) Auckland / Wellington"), - @XmlEnumValue("(GMT+12.00) Fiji / Kamchatka / Marshall Is.") - GMT_12_00_FIJI_KAMCHATKA_MARSHALL_IS("(GMT+12.00) Fiji / Kamchatka / Marshall Is."), - @XmlEnumValue("(GMT+13.00) Nuku'alofa") - GMT_13_00_NUKU_ALOFA("(GMT+13.00) Nuku'alofa"), - GMT("GMT"); - private final String value; - - TimeZone(String v) { - value = v; - } - - public String value() { - return value; - } - - public static TimeZone fromValue(String v) { - for (TimeZone c: TimeZone.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UltraZone.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UltraZone.java deleted file mode 100644 index 6b6e1620d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UltraZone.java +++ /dev/null @@ -1,268 +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; - - -/** - *

Java class for UltraZone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UltraZone">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="zoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="zoneType" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
- *       <attribute name="accountId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="primarySrc" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="owner" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="zoneId" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="parentZoneGuid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="dnssecStatus" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="suspended" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UltraZone") -public class UltraZone { - - @XmlAttribute(name = "zoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "zoneType", required = true) - protected int zoneType; - @XmlAttribute(name = "accountId") - protected String accountId; - @XmlAttribute(name = "primarySrc") - protected String primarySrc; - @XmlAttribute(name = "owner") - protected String owner; - @XmlAttribute(name = "zoneId") - protected String zoneId; - @XmlAttribute(name = "parentZoneGuid") - protected String parentZoneGuid; - @XmlAttribute(name = "dnssecStatus") - protected String dnssecStatus; - @XmlAttribute(name = "suspended") - protected String suspended; - - /** - * 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 zoneType property. - * - */ - public int getZoneType() { - return zoneType; - } - - /** - * Sets the value of the zoneType property. - * - */ - public void setZoneType(int value) { - this.zoneType = value; - } - - /** - * 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 primarySrc property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimarySrc() { - return primarySrc; - } - - /** - * Sets the value of the primarySrc property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimarySrc(String value) { - this.primarySrc = 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 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 parentZoneGuid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParentZoneGuid() { - return parentZoneGuid; - } - - /** - * Sets the value of the parentZoneGuid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParentZoneGuid(String value) { - this.parentZoneGuid = 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 suspended property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSuspended() { - return suspended; - } - - /** - * Sets the value of the suspended property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSuspended(String value) { - this.suspended = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UnsuspendZone.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UnsuspendZone.java deleted file mode 100644 index 7507012b5..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UnsuspendZone.java +++ /dev/null @@ -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; - - -/** - *

Java class for UnsuspendZone complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UnsuspendZone">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="unsuspendZoneRequest" type="{http://schema.ultraservice.neustar.com/v01/}UnsuspendZoneRequest"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UnsuspendZone", propOrder = { - "unsuspendZoneRequest" -}) -public class UnsuspendZone { - - @XmlElement(required = true) - protected UnsuspendZoneRequest unsuspendZoneRequest; - - /** - * Gets the value of the unsuspendZoneRequest property. - * - * @return - * possible object is - * {@link UnsuspendZoneRequest } - * - */ - public UnsuspendZoneRequest getUnsuspendZoneRequest() { - return unsuspendZoneRequest; - } - - /** - * Sets the value of the unsuspendZoneRequest property. - * - * @param value - * allowed object is - * {@link UnsuspendZoneRequest } - * - */ - public void setUnsuspendZoneRequest(UnsuspendZoneRequest value) { - this.unsuspendZoneRequest = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UnsuspendZoneRequest.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UnsuspendZoneRequest.java deleted file mode 100644 index accf747f9..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UnsuspendZoneRequest.java +++ /dev/null @@ -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; - - -/** - *

Java class for UnsuspendZoneRequest complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UnsuspendZoneRequest">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="zoneName" type="{http://www.w3.org/2001/XMLSchema}string"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UnsuspendZoneRequest", propOrder = { - "zoneName" -}) -public class UnsuspendZoneRequest { - - @XmlElement(required = true) - protected String zoneName; - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateCustomHTTPHeaderData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateCustomHTTPHeaderData.java deleted file mode 100644 index 86f8975fc..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateCustomHTTPHeaderData.java +++ /dev/null @@ -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; - - -/** - *

Java class for UpdateCustomHTTPHeaderData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UpdateCustomHTTPHeaderData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="guid" 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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpdateCustomHTTPHeaderData") -public class UpdateCustomHTTPHeaderData { - - @XmlAttribute(name = "guid", required = true) - protected String guid; - @XmlAttribute(name = "customHeaderValue", required = true) - protected String customHeaderValue; - - /** - * 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 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateDirectionalPoolData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateDirectionalPoolData.java deleted file mode 100644 index f37519341..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateDirectionalPoolData.java +++ /dev/null @@ -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; - - -/** - *

Java class for updateDirectionalPoolData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="updateDirectionalPoolData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="dirPoolID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="dirPoolType" type="{http://schema.ultraservice.neustar.com/v01/}DirPoolType" />
- *       <attribute name="tieBreak" type="{http://schema.ultraservice.neustar.com/v01/}TieBreak" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "updateDirectionalPoolData") -public class UpdateDirectionalPoolData { - - @XmlAttribute(name = "description") - protected String description; - @XmlAttribute(name = "dirPoolID", required = true) - protected String dirPoolID; - @XmlAttribute(name = "dirPoolType") - protected DirPoolType dirPoolType; - @XmlAttribute(name = "tieBreak") - protected TieBreak tieBreak; - - /** - * 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 dirPoolID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirPoolID() { - return dirPoolID; - } - - /** - * Sets the value of the dirPoolID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirPoolID(String value) { - this.dirPoolID = 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 tieBreak property. - * - * @return - * possible object is - * {@link TieBreak } - * - */ - public TieBreak getTieBreak() { - return tieBreak; - } - - /** - * Sets the value of the tieBreak property. - * - * @param value - * allowed object is - * {@link TieBreak } - * - */ - public void setTieBreak(TieBreak value) { - this.tieBreak = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateDirectionalRecordData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateDirectionalRecordData.java deleted file mode 100644 index d0fb11283..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateDirectionalRecordData.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UpdateDirectionalRecordData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UpdateDirectionalRecordData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DirectionalRecordConfiguration" type="{http://schema.ultraservice.neustar.com/v01/}DirectionalDNSRecordToUpdate"/>
- *         <element name="GeolocationGroupDetails" type="{http://schema.ultraservice.neustar.com/v01/}UpdateGeolocationGroupDetails"/>
- *         <element name="SourceIPGroupDetails" type="{http://schema.ultraservice.neustar.com/v01/}UpdateSourceIPGroupDetails"/>
- *         <element name="forceOverlapTransfer" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="directionalPoolRecordId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpdateDirectionalRecordData", propOrder = { - "directionalRecordConfiguration", - "geolocationGroupDetails", - "sourceIPGroupDetails", - "forceOverlapTransfer" -}) -public class UpdateDirectionalRecordData { - - @XmlElement(name = "DirectionalRecordConfiguration", required = true, nillable = true) - protected DirectionalDNSRecordToUpdate directionalRecordConfiguration; - @XmlElement(name = "GeolocationGroupDetails", required = true, nillable = true) - protected UpdateGeolocationGroupDetails geolocationGroupDetails; - @XmlElement(name = "SourceIPGroupDetails", required = true, nillable = true) - protected UpdateSourceIPGroupDetails sourceIPGroupDetails; - protected Boolean forceOverlapTransfer; - @XmlAttribute(name = "directionalPoolRecordId", required = true) - protected String directionalPoolRecordId; - - /** - * Gets the value of the directionalRecordConfiguration property. - * - * @return - * possible object is - * {@link DirectionalDNSRecordToUpdate } - * - */ - public DirectionalDNSRecordToUpdate getDirectionalRecordConfiguration() { - return directionalRecordConfiguration; - } - - /** - * Sets the value of the directionalRecordConfiguration property. - * - * @param value - * allowed object is - * {@link DirectionalDNSRecordToUpdate } - * - */ - public void setDirectionalRecordConfiguration(DirectionalDNSRecordToUpdate value) { - this.directionalRecordConfiguration = value; - } - - /** - * Gets the value of the geolocationGroupDetails property. - * - * @return - * possible object is - * {@link UpdateGeolocationGroupDetails } - * - */ - public UpdateGeolocationGroupDetails getGeolocationGroupDetails() { - return geolocationGroupDetails; - } - - /** - * Sets the value of the geolocationGroupDetails property. - * - * @param value - * allowed object is - * {@link UpdateGeolocationGroupDetails } - * - */ - public void setGeolocationGroupDetails(UpdateGeolocationGroupDetails value) { - this.geolocationGroupDetails = value; - } - - /** - * Gets the value of the sourceIPGroupDetails property. - * - * @return - * possible object is - * {@link UpdateSourceIPGroupDetails } - * - */ - public UpdateSourceIPGroupDetails getSourceIPGroupDetails() { - return sourceIPGroupDetails; - } - - /** - * Sets the value of the sourceIPGroupDetails property. - * - * @param value - * allowed object is - * {@link UpdateSourceIPGroupDetails } - * - */ - public void setSourceIPGroupDetails(UpdateSourceIPGroupDetails value) { - this.sourceIPGroupDetails = 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 directionalPoolRecordId property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDirectionalPoolRecordId() { - return directionalPoolRecordId; - } - - /** - * Sets the value of the directionalPoolRecordId property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDirectionalPoolRecordId(String value) { - this.directionalPoolRecordId = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateGeolocationGroupDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateGeolocationGroupDetails.java deleted file mode 100644 index 027411206..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateGeolocationGroupDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for UpdateGeolocationGroupDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UpdateGeolocationGroupDetails">
- *   <complexContent>
- *     <extension base="{http://schema.ultraservice.neustar.com/v01/}GeolocationGroupDetails">
- *       <sequence>
- *       </sequence>
- *       <attribute name="removeGroup" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpdateGeolocationGroupDetails") -public class UpdateGeolocationGroupDetails - extends GeolocationGroupDetails -{ - - @XmlAttribute(name = "removeGroup") - protected Boolean removeGroup; - - /** - * Gets the value of the removeGroup property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isRemoveGroup() { - return removeGroup; - } - - /** - * Sets the value of the removeGroup property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setRemoveGroup(Boolean value) { - this.removeGroup = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateRoundRobinRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateRoundRobinRecord.java deleted file mode 100644 index 271399df6..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateRoundRobinRecord.java +++ /dev/null @@ -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; - - -/** - *

Java class for UpdateRoundRobinRecord complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UpdateRoundRobinRecord">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="rrGuid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="lbPoolID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="info1Value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="TTL" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpdateRoundRobinRecord") -public class UpdateRoundRobinRecord { - - @XmlAttribute(name = "rrGuid", required = true) - protected String rrGuid; - @XmlAttribute(name = "lbPoolID", required = true) - protected String lbPoolID; - @XmlAttribute(name = "info1Value", required = true) - protected String info1Value; - @XmlAttribute(name = "TTL") - protected String ttl; - - /** - * Gets the value of the rrGuid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRrGuid() { - return rrGuid; - } - - /** - * Sets the value of the rrGuid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRrGuid(String value) { - this.rrGuid = value; - } - - /** - * Gets the value of the lbPoolID property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLbPoolID() { - return lbPoolID; - } - - /** - * Sets the value of the lbPoolID property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLbPoolID(String value) { - this.lbPoolID = value; - } - - /** - * Gets the value of the info1Value property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfo1Value() { - return info1Value; - } - - /** - * Sets the value of the info1Value property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfo1Value(String value) { - this.info1Value = value; - } - - /** - * Gets the value of the ttl property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getTTL() { - return ttl; - } - - /** - * Sets the value of the ttl property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setTTL(String value) { - this.ttl = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateSourceIPGroupDetails.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateSourceIPGroupDetails.java deleted file mode 100644 index f65ca79cd..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateSourceIPGroupDetails.java +++ /dev/null @@ -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; - - -/** - *

Java class for UpdateSourceIPGroupDetails complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UpdateSourceIPGroupDetails">
- *   <complexContent>
- *     <extension base="{http://schema.ultraservice.neustar.com/v01/}SourceIPGroupDetails">
- *       <sequence>
- *       </sequence>
- *       <attribute name="removeGroup" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpdateSourceIPGroupDetails") -public class UpdateSourceIPGroupDetails - extends SourceIPGroupDetails -{ - - @XmlAttribute(name = "removeGroup") - protected Boolean removeGroup; - - /** - * Gets the value of the removeGroup property. - * - * @return - * possible object is - * {@link Boolean } - * - */ - public Boolean isRemoveGroup() { - return removeGroup; - } - - /** - * Sets the value of the removeGroup property. - * - * @param value - * allowed object is - * {@link Boolean } - * - */ - public void setRemoveGroup(Boolean value) { - this.removeGroup = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateWebForwardPoolRecordData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateWebForwardPoolRecordData.java deleted file mode 100644 index 25c1315df..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UpdateWebForwardPoolRecordData.java +++ /dev/null @@ -1,116 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UpdateWebForwardPoolRecordData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UpdateWebForwardPoolRecordData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="HeaderRule" type="{http://schema.ultraservice.neustar.com/v01/}HeaderRule" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="guid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="priority" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UpdateWebForwardPoolRecordData", propOrder = { - "headerRule" -}) -public class UpdateWebForwardPoolRecordData { - - @XmlElement(name = "HeaderRule") - protected List headerRule; - @XmlAttribute(name = "guid", required = true) - protected String guid; - @XmlAttribute(name = "priority", required = true) - protected long priority; - - /** - * Gets the value of the headerRule property. - * - *

- * 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 set method for the headerRule property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHeaderRule().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HeaderRule } - * - * - */ - public List getHeaderRule() { - if (headerRule == null) { - headerRule = new ArrayList(); - } - return this.headerRule; - } - - /** - * 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 priority property. - * - */ - public long getPriority() { - return priority; - } - - /** - * Sets the value of the priority property. - * - */ - public void setPriority(long value) { - this.priority = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserContactInfo.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserContactInfo.java deleted file mode 100644 index 4acdac152..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserContactInfo.java +++ /dev/null @@ -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; - - -/** - *

Java class for UserContactInfo complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserContactInfo">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UserContactInfoValues" type="{http://schema.ultraservice.neustar.com/v01/}UserContactInfoValues"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserContactInfo", propOrder = { - "userContactInfoValues" -}) -public class UserContactInfo { - - @XmlElement(name = "UserContactInfoValues", required = true) - protected UserContactInfoValues userContactInfoValues; - - /** - * Gets the value of the userContactInfoValues property. - * - * @return - * possible object is - * {@link UserContactInfoValues } - * - */ - public UserContactInfoValues getUserContactInfoValues() { - return userContactInfoValues; - } - - /** - * Sets the value of the userContactInfoValues property. - * - * @param value - * allowed object is - * {@link UserContactInfoValues } - * - */ - public void setUserContactInfoValues(UserContactInfoValues value) { - this.userContactInfoValues = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserContactInfoValues.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserContactInfoValues.java deleted file mode 100644 index 6c2113ece..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserContactInfoValues.java +++ /dev/null @@ -1,411 +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; - - -/** - *

Java class for UserContactInfoValues complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserContactInfoValues">
- *   <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="PrimaryEmail" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="SecondaryEmail" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="PhoneNumber" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="FaxNumber" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="MobileNumber" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="CompanyName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Address1" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Address2" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="City" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="State" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ZipCode" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Country" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserContactInfoValues") -public class UserContactInfoValues { - - @XmlAttribute(name = "FirstName", required = true) - protected String firstName; - @XmlAttribute(name = "LastName", required = true) - protected String lastName; - @XmlAttribute(name = "PrimaryEmail", required = true) - protected String primaryEmail; - @XmlAttribute(name = "SecondaryEmail") - protected String secondaryEmail; - @XmlAttribute(name = "PhoneNumber", required = true) - protected String phoneNumber; - @XmlAttribute(name = "FaxNumber") - protected String faxNumber; - @XmlAttribute(name = "MobileNumber") - protected String mobileNumber; - @XmlAttribute(name = "CompanyName", required = true) - protected String companyName; - @XmlAttribute(name = "Address1", required = true) - protected String address1; - @XmlAttribute(name = "Address2") - protected String address2; - @XmlAttribute(name = "City", required = true) - protected String city; - @XmlAttribute(name = "State", required = true) - protected String state; - @XmlAttribute(name = "ZipCode", required = true) - protected String zipCode; - @XmlAttribute(name = "Country", required = true) - protected String country; - - /** - * 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 primaryEmail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPrimaryEmail() { - return primaryEmail; - } - - /** - * Sets the value of the primaryEmail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPrimaryEmail(String value) { - this.primaryEmail = value; - } - - /** - * Gets the value of the secondaryEmail property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getSecondaryEmail() { - return secondaryEmail; - } - - /** - * Sets the value of the secondaryEmail property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setSecondaryEmail(String value) { - this.secondaryEmail = value; - } - - /** - * Gets the value of the phoneNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getPhoneNumber() { - return phoneNumber; - } - - /** - * Sets the value of the phoneNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setPhoneNumber(String value) { - this.phoneNumber = value; - } - - /** - * Gets the value of the faxNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getFaxNumber() { - return faxNumber; - } - - /** - * Sets the value of the faxNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setFaxNumber(String value) { - this.faxNumber = value; - } - - /** - * Gets the value of the mobileNumber property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMobileNumber() { - return mobileNumber; - } - - /** - * Sets the value of the mobileNumber property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMobileNumber(String value) { - this.mobileNumber = value; - } - - /** - * Gets the value of the companyName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCompanyName() { - return companyName; - } - - /** - * Sets the value of the companyName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCompanyName(String value) { - this.companyName = value; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDefaultPreferences.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDefaultPreferences.java deleted file mode 100644 index c3c0b968e..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDefaultPreferences.java +++ /dev/null @@ -1,202 +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; - - -/** - *

Java class for UserDefaultPreferences complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserDefaultPreferences">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="DefaultAccountPreference" type="{http://schema.ultraservice.neustar.com/v01/}DefaultAccountPreference"/>
- *         <element name="DefaultDateAndTimePreference" type="{http://schema.ultraservice.neustar.com/v01/}DefaultDateAndTimePreference"/>
- *         <element name="DefaultNumberOfrecordsPreference" type="{http://schema.ultraservice.neustar.com/v01/}DefaultNumberOfrecordsPreference"/>
- *         <element name="DeleteConfirmPreference" type="{http://schema.ultraservice.neustar.com/v01/}DeleteConfirmPreference"/>
- *         <element name="AutomaticPointerPreference" type="{http://schema.ultraservice.neustar.com/v01/}AutomaticPointerPreference"/>
- *         <element name="DefaultReportPreference" type="{http://schema.ultraservice.neustar.com/v01/}DefaultReportPrefPreference"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDefaultPreferences", propOrder = { - "defaultAccountPreference", - "defaultDateAndTimePreference", - "defaultNumberOfrecordsPreference", - "deleteConfirmPreference", - "automaticPointerPreference", - "defaultReportPreference" -}) -public class UserDefaultPreferences { - - @XmlElement(name = "DefaultAccountPreference", required = true) - protected DefaultAccountPreference defaultAccountPreference; - @XmlElement(name = "DefaultDateAndTimePreference", required = true) - protected DefaultDateAndTimePreference defaultDateAndTimePreference; - @XmlElement(name = "DefaultNumberOfrecordsPreference", required = true) - protected DefaultNumberOfrecordsPreference defaultNumberOfrecordsPreference; - @XmlElement(name = "DeleteConfirmPreference", required = true) - protected DeleteConfirmPreference deleteConfirmPreference; - @XmlElement(name = "AutomaticPointerPreference", required = true) - protected AutomaticPointerPreference automaticPointerPreference; - @XmlElement(name = "DefaultReportPreference", required = true) - protected DefaultReportPrefPreference defaultReportPreference; - - /** - * Gets the value of the defaultAccountPreference property. - * - * @return - * possible object is - * {@link DefaultAccountPreference } - * - */ - public DefaultAccountPreference getDefaultAccountPreference() { - return defaultAccountPreference; - } - - /** - * Sets the value of the defaultAccountPreference property. - * - * @param value - * allowed object is - * {@link DefaultAccountPreference } - * - */ - public void setDefaultAccountPreference(DefaultAccountPreference value) { - this.defaultAccountPreference = value; - } - - /** - * Gets the value of the defaultDateAndTimePreference property. - * - * @return - * possible object is - * {@link DefaultDateAndTimePreference } - * - */ - public DefaultDateAndTimePreference getDefaultDateAndTimePreference() { - return defaultDateAndTimePreference; - } - - /** - * Sets the value of the defaultDateAndTimePreference property. - * - * @param value - * allowed object is - * {@link DefaultDateAndTimePreference } - * - */ - public void setDefaultDateAndTimePreference(DefaultDateAndTimePreference value) { - this.defaultDateAndTimePreference = value; - } - - /** - * Gets the value of the defaultNumberOfrecordsPreference property. - * - * @return - * possible object is - * {@link DefaultNumberOfrecordsPreference } - * - */ - public DefaultNumberOfrecordsPreference getDefaultNumberOfrecordsPreference() { - return defaultNumberOfrecordsPreference; - } - - /** - * Sets the value of the defaultNumberOfrecordsPreference property. - * - * @param value - * allowed object is - * {@link DefaultNumberOfrecordsPreference } - * - */ - public void setDefaultNumberOfrecordsPreference(DefaultNumberOfrecordsPreference value) { - this.defaultNumberOfrecordsPreference = value; - } - - /** - * Gets the value of the deleteConfirmPreference property. - * - * @return - * possible object is - * {@link DeleteConfirmPreference } - * - */ - public DeleteConfirmPreference getDeleteConfirmPreference() { - return deleteConfirmPreference; - } - - /** - * Sets the value of the deleteConfirmPreference property. - * - * @param value - * allowed object is - * {@link DeleteConfirmPreference } - * - */ - public void setDeleteConfirmPreference(DeleteConfirmPreference value) { - this.deleteConfirmPreference = value; - } - - /** - * Gets the value of the automaticPointerPreference property. - * - * @return - * possible object is - * {@link AutomaticPointerPreference } - * - */ - public AutomaticPointerPreference getAutomaticPointerPreference() { - return automaticPointerPreference; - } - - /** - * Sets the value of the automaticPointerPreference property. - * - * @param value - * allowed object is - * {@link AutomaticPointerPreference } - * - */ - public void setAutomaticPointerPreference(AutomaticPointerPreference value) { - this.automaticPointerPreference = value; - } - - /** - * Gets the value of the defaultReportPreference property. - * - * @return - * possible object is - * {@link DefaultReportPrefPreference } - * - */ - public DefaultReportPrefPreference getDefaultReportPreference() { - return defaultReportPreference; - } - - /** - * Sets the value of the defaultReportPreference property. - * - * @param value - * allowed object is - * {@link DefaultReportPrefPreference } - * - */ - public void setDefaultReportPreference(DefaultReportPrefPreference value) { - this.defaultReportPreference = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDetailsData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDetailsData.java deleted file mode 100644 index 2299826fd..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDetailsData.java +++ /dev/null @@ -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; - - -/** - *

Java class for UserDetailsData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserDetailsData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="userid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="userName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <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" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDetailsData") -public class UserDetailsData { - - @XmlAttribute(name = "userid", required = true) - protected String userid; - @XmlAttribute(name = "userName", required = true) - protected String userName; - @XmlAttribute(name = "firstName", required = true) - protected String firstName; - @XmlAttribute(name = "lastName", required = true) - protected String lastName; - - /** - * 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; - } - - /** - * Gets the value of the userName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getUserName() { - return userName; - } - - /** - * Sets the value of the userName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setUserName(String value) { - this.userName = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDetailsPermissionData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDetailsPermissionData.java deleted file mode 100644 index ebd16472c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserDetailsPermissionData.java +++ /dev/null @@ -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.XmlAttribute; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for UserDetailsPermissionData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserDetailsPermissionData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="Login" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Read" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Write" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Create" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Delete" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Grant" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="MemberType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="AssetType" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserDetailsPermissionData") -public class UserDetailsPermissionData { - - @XmlAttribute(name = "Login") - protected String login; - @XmlAttribute(name = "Read") - protected String read; - @XmlAttribute(name = "Write") - protected String write; - @XmlAttribute(name = "Create") - protected String create; - @XmlAttribute(name = "Delete") - protected String delete; - @XmlAttribute(name = "Grant") - protected String grant; - @XmlAttribute(name = "Name") - protected String name; - @XmlAttribute(name = "MemberType") - protected String memberType; - @XmlAttribute(name = "AssetType") - protected String assetType; - - /** - * Gets the value of the login property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getLogin() { - return login; - } - - /** - * Sets the value of the login property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setLogin(String value) { - this.login = value; - } - - /** - * Gets the value of the read property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRead() { - return read; - } - - /** - * Sets the value of the read property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRead(String value) { - this.read = value; - } - - /** - * Gets the value of the write property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getWrite() { - return write; - } - - /** - * Sets the value of the write property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setWrite(String value) { - this.write = value; - } - - /** - * Gets the value of the create property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getCreate() { - return create; - } - - /** - * Sets the value of the create property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setCreate(String value) { - this.create = value; - } - - /** - * Gets the value of the delete property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getDelete() { - return delete; - } - - /** - * Sets the value of the delete property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setDelete(String value) { - this.delete = value; - } - - /** - * Gets the value of the grant property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getGrant() { - return grant; - } - - /** - * Sets the value of the grant property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setGrant(String value) { - this.grant = 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 memberType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getMemberType() { - return memberType; - } - - /** - * Sets the value of the memberType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setMemberType(String value) { - this.memberType = value; - } - - /** - * Gets the value of the assetType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getAssetType() { - return assetType; - } - - /** - * Sets the value of the assetType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setAssetType(String value) { - this.assetType = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserSummary.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserSummary.java deleted file mode 100644 index a4150fdf0..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserSummary.java +++ /dev/null @@ -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; - - -/** - *

Java class for UserSummary complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserSummary">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="servicePackageName" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="numberOfRecords" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserSummary") -public class UserSummary { - - @XmlAttribute(name = "servicePackageName") - protected String servicePackageName; - @XmlAttribute(name = "numberOfRecords") - protected String numberOfRecords; - - /** - * Gets the value of the servicePackageName property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getServicePackageName() { - return servicePackageName; - } - - /** - * Sets the value of the servicePackageName property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setServicePackageName(String value) { - this.servicePackageName = value; - } - - /** - * Gets the value of the numberOfRecords property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getNumberOfRecords() { - return numberOfRecords; - } - - /** - * Sets the value of the numberOfRecords property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setNumberOfRecords(String value) { - this.numberOfRecords = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserSummaryList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserSummaryList.java deleted file mode 100644 index 97d4539ab..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UserSummaryList.java +++ /dev/null @@ -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; - - -/** - *

Java class for UserSummaryList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UserSummaryList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UserSummary" type="{http://schema.ultraservice.neustar.com/v01/}UserSummary" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UserSummaryList", propOrder = { - "userSummary" -}) -public class UserSummaryList { - - @XmlElement(name = "UserSummary", required = true) - protected List userSummary; - - /** - * Gets the value of the userSummary property. - * - *

- * 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 set method for the userSummary property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUserSummary().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UserSummary } - * - * - */ - public List getUserSummary() { - if (userSummary == null) { - userSummary = new ArrayList(); - } - return this.userSummary; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UsersList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UsersList.java deleted file mode 100644 index eed082c3c..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/UsersList.java +++ /dev/null @@ -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; - - -/** - *

Java class for UsersList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="UsersList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UserDetailsData" type="{http://schema.ultraservice.neustar.com/v01/}UserDetailsData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "UsersList", propOrder = { - "userDetailsData" -}) -public class UsersList { - - @XmlElement(name = "UserDetailsData", required = true) - protected List userDetailsData; - - /** - * Gets the value of the userDetailsData property. - * - *

- * 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 set method for the userDetailsData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUserDetailsData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UserDetailsData } - * - * - */ - public List getUserDetailsData() { - if (userDetailsData == null) { - userDetailsData = new ArrayList(); - } - return this.userDetailsData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordData.java deleted file mode 100644 index 5610047fc..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordData.java +++ /dev/null @@ -1,174 +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.XmlAttribute; -import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlSeeAlso; -import javax.xml.bind.annotation.XmlType; - - -/** - *

Java class for WebForwardPoolRecordData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="WebForwardPoolRecordData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="HeaderRule" type="{http://schema.ultraservice.neustar.com/v01/}HeaderRule" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *       <attribute name="redirectsTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="parentGuid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="redirectType" use="required" type="{http://schema.ultraservice.neustar.com/v01/}RedirectType" />
- *       <attribute name="priority" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "WebForwardPoolRecordData", propOrder = { - "headerRule" -}) -@XmlSeeAlso({ - WebForwardPoolRecordDataGuid.class -}) -public class WebForwardPoolRecordData { - - @XmlElement(name = "HeaderRule") - protected List headerRule; - @XmlAttribute(name = "redirectsTo", required = true) - protected String redirectsTo; - @XmlAttribute(name = "parentGuid", required = true) - protected String parentGuid; - @XmlAttribute(name = "redirectType", required = true) - protected RedirectType redirectType; - @XmlAttribute(name = "priority", required = true) - protected long priority; - - /** - * Gets the value of the headerRule property. - * - *

- * 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 set method for the headerRule property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getHeaderRule().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link HeaderRule } - * - * - */ - public List getHeaderRule() { - if (headerRule == null) { - headerRule = new ArrayList(); - } - return this.headerRule; - } - - /** - * Gets the value of the redirectsTo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRedirectsTo() { - return redirectsTo; - } - - /** - * Sets the value of the redirectsTo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRedirectsTo(String value) { - this.redirectsTo = value; - } - - /** - * Gets the value of the parentGuid property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getParentGuid() { - return parentGuid; - } - - /** - * Sets the value of the parentGuid property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setParentGuid(String value) { - this.parentGuid = value; - } - - /** - * Gets the value of the redirectType property. - * - * @return - * possible object is - * {@link RedirectType } - * - */ - public RedirectType getRedirectType() { - return redirectType; - } - - /** - * Sets the value of the redirectType property. - * - * @param value - * allowed object is - * {@link RedirectType } - * - */ - public void setRedirectType(RedirectType value) { - this.redirectType = value; - } - - /** - * Gets the value of the priority property. - * - */ - public long getPriority() { - return priority; - } - - /** - * Sets the value of the priority property. - * - */ - public void setPriority(long value) { - this.priority = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordDataGuid.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordDataGuid.java deleted file mode 100644 index 47dcede73..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordDataGuid.java +++ /dev/null @@ -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; - - -/** - *

Java class for WebForwardPoolRecordDataGuid complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="WebForwardPoolRecordDataGuid">
- *   <complexContent>
- *     <extension base="{http://schema.ultraservice.neustar.com/v01/}WebForwardPoolRecordData">
- *       <sequence>
- *       </sequence>
- *       <attribute name="guid" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </extension>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "WebForwardPoolRecordDataGuid") -public class WebForwardPoolRecordDataGuid - extends WebForwardPoolRecordData -{ - - @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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordDataList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordDataList.java deleted file mode 100644 index 7fcf70eef..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardPoolRecordDataList.java +++ /dev/null @@ -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; - - -/** - *

Java class for WebForwardPoolRecordDataList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="WebForwardPoolRecordDataList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="WebForwardPoolRecordData" type="{http://schema.ultraservice.neustar.com/v01/}WebForwardPoolRecordDataGuid" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "WebForwardPoolRecordDataList", propOrder = { - "webForwardPoolRecordData" -}) -public class WebForwardPoolRecordDataList { - - @XmlElement(name = "WebForwardPoolRecordData") - protected List webForwardPoolRecordData; - - /** - * Gets the value of the webForwardPoolRecordData property. - * - *

- * 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 set method for the webForwardPoolRecordData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWebForwardPoolRecordData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link WebForwardPoolRecordDataGuid } - * - * - */ - public List getWebForwardPoolRecordData() { - if (webForwardPoolRecordData == null) { - webForwardPoolRecordData = new ArrayList(); - } - return this.webForwardPoolRecordData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardRecord.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardRecord.java deleted file mode 100644 index c7f177b85..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebForwardRecord.java +++ /dev/null @@ -1,187 +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; - - -/** - *

Java class for Web_Forward_Record complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="Web_Forward_Record">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <attribute name="ZoneName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="ForwardType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RedirectTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="RequestTo" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="Advanced" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- *       <attribute name="Guid" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "Web_Forward_Record") -public class WebForwardRecord { - - @XmlAttribute(name = "ZoneName", required = true) - protected String zoneName; - @XmlAttribute(name = "ForwardType", required = true) - protected String forwardType; - @XmlAttribute(name = "RedirectTo", required = true) - protected String redirectTo; - @XmlAttribute(name = "RequestTo", required = true) - protected String requestTo; - @XmlAttribute(name = "Advanced", required = true) - protected boolean advanced; - @XmlAttribute(name = "Guid", required = true) - protected String guid; - - /** - * 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 forwardType property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getForwardType() { - return forwardType; - } - - /** - * Sets the value of the forwardType property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setForwardType(String value) { - this.forwardType = value; - } - - /** - * Gets the value of the redirectTo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRedirectTo() { - return redirectTo; - } - - /** - * Sets the value of the redirectTo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRedirectTo(String value) { - this.redirectTo = value; - } - - /** - * Gets the value of the requestTo property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getRequestTo() { - return requestTo; - } - - /** - * Sets the value of the requestTo property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setRequestTo(String value) { - this.requestTo = value; - } - - /** - * Gets the value of the advanced property. - * - */ - public boolean isAdvanced() { - return advanced; - } - - /** - * Sets the value of the advanced property. - * - */ - public void setAdvanced(boolean value) { - this.advanced = 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebFwdRecordsList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebFwdRecordsList.java deleted file mode 100644 index afae32f7a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/WebFwdRecordsList.java +++ /dev/null @@ -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; - - -/** - *

Java class for WebFwdRecordsList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="WebFwdRecordsList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="Web_Forward_Record" type="{http://schema.ultraservice.neustar.com/v01/}Web_Forward_Record" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "WebFwdRecordsList", propOrder = { - "webForwardRecord" -}) -public class WebFwdRecordsList { - - @XmlElement(name = "Web_Forward_Record", required = true) - protected List webForwardRecord; - - /** - * Gets the value of the webForwardRecord property. - * - *

- * 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 set method for the webForwardRecord property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getWebForwardRecord().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link WebForwardRecord } - * - * - */ - public List getWebForwardRecord() { - if (webForwardRecord == null) { - webForwardRecord = new ArrayList(); - } - return this.webForwardRecord; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneInfoData.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneInfoData.java deleted file mode 100644 index df8441b76..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneInfoData.java +++ /dev/null @@ -1,168 +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; - - -/** - *

Java class for ZoneInfoData complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ZoneInfoData">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *       </sequence>
- *       <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="infoname" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="infovalue" type="{http://www.w3.org/2001/XMLSchema}string" />
- *       <attribute name="modified" type="{http://www.w3.org/2001/XMLSchema}string" />
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZoneInfoData") -public class ZoneInfoData { - - @XmlAttribute(name = "guid", required = true) - protected String guid; - @XmlAttribute(name = "zoneid", required = true) - protected String zoneid; - @XmlAttribute(name = "infoname") - protected String infoname; - @XmlAttribute(name = "infovalue") - protected String infovalue; - @XmlAttribute(name = "modified") - protected String modified; - - /** - * 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 infoname property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfoname() { - return infoname; - } - - /** - * Sets the value of the infoname property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfoname(String value) { - this.infoname = value; - } - - /** - * Gets the value of the infovalue property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getInfovalue() { - return infovalue; - } - - /** - * Sets the value of the infovalue property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setInfovalue(String value) { - this.infovalue = value; - } - - /** - * Gets the value of the modified property. - * - * @return - * possible object is - * {@link String } - * - */ - public String getModified() { - return modified; - } - - /** - * Sets the value of the modified property. - * - * @param value - * allowed object is - * {@link String } - * - */ - public void setModified(String value) { - this.modified = value; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneInfoList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneInfoList.java deleted file mode 100644 index 70a11325d..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneInfoList.java +++ /dev/null @@ -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; - - -/** - *

Java class for ZoneInfoList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ZoneInfoList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="ZoneInfoData" type="{http://schema.ultraservice.neustar.com/v01/}ZoneInfoData" maxOccurs="unbounded"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZoneInfoList", propOrder = { - "zoneInfoData" -}) -public class ZoneInfoList { - - @XmlElement(name = "ZoneInfoData", required = true) - protected List zoneInfoData; - - /** - * Gets the value of the zoneInfoData property. - * - *

- * 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 set method for the zoneInfoData property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getZoneInfoData().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link ZoneInfoData } - * - * - */ - public List getZoneInfoData() { - if (zoneInfoData == null) { - zoneInfoData = new ArrayList(); - } - return this.zoneInfoData; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneList.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneList.java deleted file mode 100644 index 17deaec75..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneList.java +++ /dev/null @@ -1,126 +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; - - -/** - *

Java class for ZoneList complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ZoneList">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="UltraZone" type="{http://schema.ultraservice.neustar.com/v01/}UltraZone" maxOccurs="unbounded"/>
- *         <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZoneList", propOrder = { - "ultraZone", - "total", - "offset", - "count" -}) -public class ZoneList { - - @XmlElement(name = "UltraZone", required = true) - protected List ultraZone; - protected int total; - protected int offset; - protected int count; - - /** - * Gets the value of the ultraZone property. - * - *

- * 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 set method for the ultraZone property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getUltraZone().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link UltraZone } - * - * - */ - public List getUltraZone() { - if (ultraZone == null) { - ultraZone = new ArrayList(); - } - return this.ultraZone; - } - - /** - * 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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneTransferStatus.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneTransferStatus.java deleted file mode 100644 index d2cbde192..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneTransferStatus.java +++ /dev/null @@ -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; - - -/** - *

Java class for ZoneTransferStatus complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="ZoneTransferStatus">
- *   <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>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "ZoneTransferStatus") -public class ZoneTransferStatus { - - @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; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneType.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneType.java deleted file mode 100644 index d10b63b96..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/ZoneType.java +++ /dev/null @@ -1,57 +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; - - -/** - *

Java class for zoneType. - * - *

The following schema fragment specifies the expected content contained within this class. - *

- *

- * <simpleType name="zoneType">
- *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- *     <enumeration value="primary"/>
- *     <enumeration value="secondary"/>
- *     <enumeration value="alias"/>
- *     <enumeration value="all"/>
- *   </restriction>
- * </simpleType>
- * 
- * - */ -@XmlType(name = "zoneType") -@XmlEnum -public enum ZoneType { - - @XmlEnumValue("primary") - PRIMARY("primary"), - @XmlEnumValue("secondary") - SECONDARY("secondary"), - @XmlEnumValue("alias") - ALIAS("alias"), - @XmlEnumValue("all") - ALL("all"); - private final String value; - - ZoneType(String v) { - value = v; - } - - public String value() { - return value; - } - - public static ZoneType fromValue(String v) { - for (ZoneType c: ZoneType.values()) { - if (c.value.equals(v)) { - return c; - } - } - throw new IllegalArgumentException(v); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/package-info.java b/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/package-info.java deleted file mode 100644 index 7ad6102ca..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/com/neustar/ultraservice/schema/v01/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://schema.ultraservice.neustar.com/v01/", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED) -package com.neustar.ultraservice.schema.v01; diff --git a/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/ObjectFactory.java b/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/ObjectFactory.java deleted file mode 100644 index 908a97ff7..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/ObjectFactory.java +++ /dev/null @@ -1,40 +0,0 @@ - -package net.java.dev.jaxb.array; - -import javax.xml.bind.annotation.XmlRegistry; - - -/** - * This object contains factory methods for each - * Java content interface and Java element interface - * generated in the net.java.dev.jaxb.array package. - *

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: net.java.dev.jaxb.array - * - */ - public ObjectFactory() { - } - - /** - * Create an instance of {@link StringArray } - * - */ - public StringArray createStringArray() { - return new StringArray(); - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/StringArray.java b/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/StringArray.java deleted file mode 100644 index c0d74b372..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/StringArray.java +++ /dev/null @@ -1,69 +0,0 @@ - -package net.java.dev.jaxb.array; - -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; - - -/** - *

Java class for stringArray complex type. - * - *

The following schema fragment specifies the expected content contained within this class. - * - *

- * <complexType name="stringArray">
- *   <complexContent>
- *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- *       <sequence>
- *         <element name="item" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
- *       </sequence>
- *     </restriction>
- *   </complexContent>
- * </complexType>
- * 
- * - * - */ -@XmlAccessorType(XmlAccessType.FIELD) -@XmlType(name = "stringArray", propOrder = { - "item" -}) -public class StringArray { - - @XmlElement(nillable = true) - protected List item; - - /** - * Gets the value of the item property. - * - *

- * 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 set method for the item property. - * - *

- * For example, to add a new item, do as follows: - *

-     *    getItem().add(newItem);
-     * 
- * - * - *

- * Objects of the following type(s) are allowed in the list - * {@link String } - * - * - */ - public List getItem() { - if (item == null) { - item = new ArrayList(); - } - return this.item; - } - -} diff --git a/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/package-info.java b/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/package-info.java deleted file mode 100644 index c521ad51a..000000000 --- a/Plugins/Mineplex.BungeeRotator/src/net/java/dev/jaxb/array/package-info.java +++ /dev/null @@ -1,2 +0,0 @@ -@javax.xml.bind.annotation.XmlSchema(namespace = "http://jaxb.dev.java.net/array") -package net.java.dev.jaxb.array;