Apache CXF API

org.apache.cxf.binding.corba.wsdl
Class BindingType

java.lang.Object
  extended by org.apache.cxf.wsdl.TExtensibilityElement
      extended by org.apache.cxf.wsdl.TExtensibilityElementImpl
          extended by org.apache.cxf.binding.corba.wsdl.BindingType
All Implemented Interfaces:
javax.wsdl.extensions.ExtensibilityElement

public class BindingType
extends TExtensibilityElementImpl

CXF CORBA Binding Type

Java class for bindingType complex type.

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

 <complexType name="bindingType">
   <complexContent>
     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
       <attribute name="repositoryID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="bases" type="{http://cxf.apache.org/bindings/corba}basesType" />
     </extension>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<String> bases
           
protected  String repositoryID
           
 
Fields inherited from class org.apache.cxf.wsdl.TExtensibilityElement
required
 
Constructor Summary
BindingType()
           
 
Method Summary
 List<String> getBases()
          Gets the value of the bases property.
 String getRepositoryID()
          Gets the value of the repositoryID property.
 boolean isSetBases()
           
 boolean isSetRepositoryID()
           
 void setRepositoryID(String value)
          Sets the value of the repositoryID property.
 void unsetBases()
           
 
Methods inherited from class org.apache.cxf.wsdl.TExtensibilityElementImpl
getElementType, getRequired, setElementType, setRequired
 
Methods inherited from class org.apache.cxf.wsdl.TExtensibilityElement
isRequired, isSetRequired, setRequired, unsetRequired
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

repositoryID

protected String repositoryID

bases

protected List<String> bases
Constructor Detail

BindingType

public BindingType()
Method Detail

getRepositoryID

public String getRepositoryID()
Gets the value of the repositoryID property.

Returns:
possible object is String

setRepositoryID

public void setRepositoryID(String value)
Sets the value of the repositoryID property.

Parameters:
value - allowed object is String

isSetRepositoryID

public boolean isSetRepositoryID()

getBases

public List<String> getBases()
Gets the value of the bases 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 bases property.

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

    getBases().add(newItem);
 

Objects of the following type(s) are allowed in the list String


isSetBases

public boolean isSetBases()

unsetBases

public void unsetBases()

Apache CXF API

Apache CXF