Class BindingType
- java.lang.Object
-
- org.apache.cxf.binding.corba.wsdl.BindingType
-
public class BindingType extends Object
CXF CORBA Binding TypeJava class for bindingType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="bindingType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="repositoryID" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="bases" type="{http://cxf.apache.org/bindings/corba}basesType" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<String>basesprotected StringrepositoryID
-
Constructor Summary
Constructors Constructor Description BindingType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getBases()Gets the value of the bases property.StringgetRepositoryID()Gets the value of the repositoryID property.booleanisSetBases()booleanisSetRepositoryID()voidsetRepositoryID(String value)Sets the value of the repositoryID property.voidunsetBases()
-
-
-
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 isString
-
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
setmethod 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()
-
-