org.apache.geronimo.jee.naming
public class: Port [javadoc |
source]
java.lang.Object
org.apache.geronimo.jee.naming.Port
All Implemented Interfaces:
Serializable
Java class for portType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="portType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="port-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<group ref="{http://geronimo.apache.org/xml/ns/naming-1.2}serverGroup" minOccurs="0"/>
<element name="uri" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="credentials-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- version:
$ - Rev: 642503 $ $Date: 2008-03-29 12:35:01 +0800 (Sat, 29 Mar 2008) $
| Field Summary |
|---|
| protected String | portName | |
| protected String | protocol | |
| protected String | host | |
| protected Integer | port | |
| protected String | uri | |
| protected String | credentialsName | |
| Method from org.apache.geronimo.jee.naming.Port Summary: |
|---|
|
getCredentialsName, getHost, getPort, getPortName, getProtocol, getUri, setCredentialsName, setHost, setPort, setPortName, setProtocol, setUri |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.jee.naming.Port Detail: |
public String getCredentialsName() {
return credentialsName;
}
Gets the value of the credentialsName property. |
public String getHost() {
return host;
}
Gets the value of the host property. |
public Integer getPort() {
return port;
}
Gets the value of the port property. |
public String getPortName() {
return portName;
}
Gets the value of the portName property. |
public String getProtocol() {
return protocol;
}
Gets the value of the protocol property. |
public String getUri() {
return uri;
}
Gets the value of the uri property. |
public void setCredentialsName(String value) {
this.credentialsName = value;
}
Sets the value of the credentialsName property. |
public void setHost(String value) {
this.host = value;
}
Sets the value of the host property. |
public void setPort(Integer value) {
this.port = value;
}
Sets the value of the port property. |
public void setPortName(String value) {
this.portName = value;
}
Sets the value of the portName property. |
public void setProtocol(String value) {
this.protocol = value;
}
Sets the value of the protocol property. |
public void setUri(String value) {
this.uri = value;
}
Sets the value of the uri property. |