Package org.apache.openejb.jee.oejb2
Class ServiceRefType
- java.lang.Object
-
- org.apache.openejb.jee.oejb2.ServiceRefType
-
public class ServiceRefType extends Object
Java class for service-refType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="service-refType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="service-ref-name" type="{http://www.w3.org/2001/XMLSchema}string"/> <choice> <element name="service-completion" type="{http://geronimo.apache.org/xml/ns/naming-1.2}service-completionType"/> <element name="port" type="{http://geronimo.apache.org/xml/ns/naming-1.2}portType" maxOccurs="unbounded"/> </choice> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PortType>portprotected ServiceCompletionTypeserviceCompletionprotected StringserviceRefNameprotected StringwsdlFile
-
Constructor Summary
Constructors Constructor Description ServiceRefType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PortType>getPort()Gets the value of the port property.ServiceCompletionTypegetServiceCompletion()Gets the value of the serviceCompletion property.StringgetServiceRefName()Gets the value of the serviceRefName property.StringgetWsdlFile()Gets the value of the wsdlFile property.voidsetServiceCompletion(ServiceCompletionType value)Sets the value of the serviceCompletion property.voidsetServiceRefName(String value)Sets the value of the serviceRefName property.voidsetWsdlFile(String wsdlFile)Sets the value of the wsdlFile property.
-
-
-
Field Detail
-
serviceRefName
protected String serviceRefName
-
wsdlFile
protected String wsdlFile
-
serviceCompletion
protected ServiceCompletionType serviceCompletion
-
-
Method Detail
-
getServiceRefName
public String getServiceRefName()
Gets the value of the serviceRefName property.- Returns:
- possible object is
String
-
setServiceRefName
public void setServiceRefName(String value)
Sets the value of the serviceRefName property.- Parameters:
value- allowed object isString
-
getServiceCompletion
public ServiceCompletionType getServiceCompletion()
Gets the value of the serviceCompletion property.- Returns:
- possible object is
ServiceCompletionType
-
setServiceCompletion
public void setServiceCompletion(ServiceCompletionType value)
Sets the value of the serviceCompletion property.- Parameters:
value- allowed object isServiceCompletionType
-
getPort
public List<PortType> getPort()
Gets the value of the port 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 asetmethod for the port property. For example, to add a new item, do as follows:getPort().add(newItem);Objects of the following type(s) are allowed in the listPortType
-
getWsdlFile
public String getWsdlFile()
Gets the value of the wsdlFile property.- Returns:
- possible object is
String
-
-