All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.uddi.repl_v3.Operator Maven / Gradle / Ivy

There is a newer version: 3.3.10
Show newest version
/*
 * Copyright 2001-2008 The Apache Software Foundation.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
package org.uddi.repl_v3;

import java.io.Serializable;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import org.uddi.api_v3.Contact;
import org.w3._2000._09.xmldsig_.KeyInfoType;

/**
 * The operator elements in a Replication Configuration Structure are a list of
 * the nodes and established paths of communication between the nodes within a
 * registry. The communication paths and general replication topology
 * considerations are discussed later in this specification.
 * 

* The operatorNodeID contains a unique key that is used to uniquely identify * this node throughout the UDDI registry. The value used MUST match the * businessKey of the Node Business Entity as referenced in Section 6.2.2 * Self-Registration of Node Business Entity. The contact or contacts listed * provide information about humans who should be contacted in the face of * administrative and technical situations of various sorts. . The dsig:KeyInfo * elements are intended to contain the certificate details if the * soapReplicationURL makes use of Secure Sockets Layer 3.0 with mutual * authentication as described in Section 7.5.5 Security Configuration. * * *

* Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:uddi-org:repl_v3}operatorNodeID"/>
 *         <element name="operatorStatus" type="{urn:uddi-org:repl_v3}operatorStatus_type"/>
 *         <element ref="{urn:uddi-org:api_v3}contact" maxOccurs="unbounded"/>
 *         <element name="soapReplicationURL" type="{http://www.w3.org/2001/XMLSchema}anyURI"/>
 *         <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "operatorNodeID", "operatorStatus", "contact", "soapReplicationURL", "keyInfo" }) @XmlRootElement(name = "operator") public class Operator implements Serializable { @XmlTransient private static final long serialVersionUID = 3012475870316361941L; @XmlElement(required = true) protected String operatorNodeID; @XmlElement(required = true) protected OperatorStatusType operatorStatus; @XmlElement(namespace = "urn:uddi-org:api_v3", required = true) protected List contact; @XmlElement(required = true) @XmlSchemaType(name = "anyURI") protected String soapReplicationURL; @XmlElement(name = "KeyInfo", namespace = "http://www.w3.org/2000/09/xmldsig#") protected List keyInfo; /** * Gets the value of the operatorNodeID property. * * @return possible object is {@link String } * */ public String getOperatorNodeID() { return operatorNodeID; } /** * Sets the value of the operatorNodeID property. * * @param value allowed object is {@link String } * */ public void setOperatorNodeID(String value) { this.operatorNodeID = value; } /** * Gets the value of the operatorStatus property. * * @return possible object is {@link OperatorStatusType } * */ public OperatorStatusType getOperatorStatus() { return operatorStatus; } /** * Sets the value of the operatorStatus property. * * @param value allowed object is {@link OperatorStatusType } * */ public void setOperatorStatus(OperatorStatusType value) { this.operatorStatus = value; } /** * Gets the value of the contact 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 contact property. * *

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

         *    getContact().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Contact } * * */ public List getContact() { if (contact == null) { contact = new ArrayList(); } return this.contact; } /** * Gets the value of the soapReplicationURL property. * * @return possible object is {@link String } * */ public String getSoapReplicationURL() { return soapReplicationURL; } /** * Sets the value of the soapReplicationURL property. * * @param value allowed object is {@link String } * */ public void setSoapReplicationURL(String value) { this.soapReplicationURL = value; } /** * Gets the value of the keyInfo 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 keyInfo property. * *

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

         *    getKeyInfo().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link KeyInfoType } * * */ public List getKeyInfo() { if (keyInfo == null) { keyInfo = new ArrayList(); } return this.keyInfo; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy