options.java
来自「开源的axis2框架的源码。用于开发WEBSERVER」· Java 代码 · 共 1,690 行 · 第 1/5 页
JAVA
1,690 行
*
* @param key
* @return the value related to this key. <code>null</code>, if not found.
*/
public Object getProperty(String key) {
Object myPropValue = null;
if (this.properties != null) {
myPropValue = properties.get(key);
}
if (myPropValue == null && parent != null) {
return parent.getProperty(key);
}
return myPropValue;
}
/**
* Get WS-Addressing RelatesTo item with a specified type. If there are
* multiple RelatesTo items defined with the same type, the one returned
* by this method is arbitrary - if you need to handle this case, you can
* instead use the {@link #getRelationships()} to retrieve all the items
* and check for multiple matches.
*
* @param type relationship type (URI)
* @return item of specified type
*/
public RelatesTo getRelatesTo(String type) {
if (relationships == null && parent != null) {
return parent.getRelatesTo(type);
}
if (relationships == null) {
return null;
}
for (int i = 0; i < relationships.size(); i++) {
RelatesTo relatesTo = (RelatesTo) relationships.get(i);
String relationshipType = relatesTo.getRelationshipType();
if (relationshipType.equals(type)) {
return relatesTo;
}
}
return null;
}
/**
* Return a single instance of WS-Addressing RelatesTo that has a relationship
* type of either "http://www.w3.org/2005/08/addressing/reply" or "wsa:Reply".
* If no such instance of RelatesTo can be found then return <code>null</code>.
*
* @return an instance of {@link RelatesTo}
*/
public RelatesTo getRelatesTo() {
if (relationships == null && parent != null) {
return parent.getRelatesTo();
}
if (relationships == null) {
return null;
}
for (int i = 0; i < relationships.size(); i++) {
RelatesTo relatesTo = (RelatesTo) relationships.get(i);
String relationshipType = relatesTo.getRelationshipType();
if (relationshipType.equals(AddressingConstants.Final.WSA_DEFAULT_RELATIONSHIP_TYPE)
|| relationshipType
.equals(AddressingConstants.Submission.WSA_DEFAULT_RELATIONSHIP_TYPE)) {
return relatesTo;
}
}
return null;
}
/**
* Get all WS-Addressing RelatesTo items.
*
* @return array of items
*/
public RelatesTo[] getRelationships() {
if (relationships == null && parent != null) {
return parent.getRelationships();
}
if (relationships == null) {
return null;
}
return (RelatesTo[]) relationships.toArray(new RelatesTo[relationships.size()]);
}
/**
* Set WS-Addressing RelatesTo items.
*
* @param list
*/
public void setRelationships(RelatesTo[] list) {
relationships = list == null ? null : Arrays.asList(list);
}
/**
* Get WS-Addressing ReplyTo endpoint reference.
*
* @return endpoint
*/
public EndpointReference getReplyTo() {
if (replyTo == null && parent != null) {
return parent.getReplyTo();
}
return replyTo;
}
/**
* Get outbound transport description.
*
* @return description
*/
public TransportOutDescription getTransportOut() {
checkActivateWarning("getTransportOut");
if (transportOut == null && parent != null) {
return parent.getTransportOut();
}
return transportOut;
}
/**
* Get SOAP version being used.
*
* @return version
*/
public String getSoapVersionURI() {
if (soapVersionURI == null && parent != null) {
return parent.getSoapVersionURI();
}
return soapVersionURI == null ? SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI
: soapVersionURI;
}
/**
* Gets the wait time after which a client times out in a blocking scenario.
* The default is Options#DEFAULT_TIMEOUT_MILLISECONDS
*
* @return timeOutInMilliSeconds
*/
public long getTimeOutInMilliSeconds() {
if (timeOutInMilliSeconds == -1 && parent != null) {
return parent.getTimeOutInMilliSeconds();
}
return timeOutInMilliSeconds == -1 ? DEFAULT_TIMEOUT_MILLISECONDS
: timeOutInMilliSeconds;
}
/**
* Get WS-Addressing To endpoint reference.
*
* @return endpoint
*/
public EndpointReference getTo() {
if (to == null && parent != null) {
return parent.getTo();
}
return to;
}
/**
* If there is a SOAP Fault in the body of the incoming SOAP Message, system
* can be configured to throw an exception with the details extracted from
* the information from the fault message. This boolean variable will enable
* that facility. If this is false, the response message will just be
* returned to the application, irrespective of whether it has a Fault or
* not.
*
* @return <code>true</code> if exception to be thrown
*/
public boolean isExceptionToBeThrownOnSOAPFault() {
if (isExceptionToBeThrownOnSOAPFault == null && parent != null) {
isExceptionToBeThrownOnSOAPFault = parent.isExceptionToBeThrownOnSOAPFault;
}
return isExceptionToBeThrownOnSOAPFault == null
|| isExceptionToBeThrownOnSOAPFault.booleanValue();
}
/**
* Check whether the two SOAP Messages are be sent over same channel or over
* separate channels. Only duplex transports such as http and tcp support a
* <code>false</code> value.
*
* @return separate channel flag
*/
public boolean isUseSeparateListener() {
if (useSeparateListener == null && parent != null) {
useSeparateListener = new Boolean(parent.isUseSeparateListener());
}
return useSeparateListener != null
&& useSeparateListener.booleanValue();
}
/**
* Get parent instance providing default property values.
*
* @return parent (<code>null</code> if none)
*/
public Options getParent() {
return parent;
}
/**
* Set parent instance providing default property values.
*
* @param parent (<code>null</code> if none)
*/
public void setParent(Options parent) {
this.parent = parent;
}
/**
* Set WS-Addressing Action / SOAP Action string.
*
* @param action
*/
public void setAction(String action) {
this.action = action;
}
/**
* If there is a SOAP Fault in the body of the incoming SOAP Message, system
* can be configured to throw an exception with the details extracted from
* the information from the fault message. This boolean variable will enable
* that facility. If this is false, the response message will just be
* returned to the application, irrespective of whether it has a Fault or
* not.
*
* @param exceptionToBeThrownOnSOAPFault
*/
public void setExceptionToBeThrownOnSOAPFault(
boolean exceptionToBeThrownOnSOAPFault) {
isExceptionToBeThrownOnSOAPFault = Boolean
.valueOf(exceptionToBeThrownOnSOAPFault);
}
/**
* Set WS-Addressing FaultTo endpoint reference.
*
* @param faultTo endpoint
*/
public void setFaultTo(EndpointReference faultTo) {
this.faultTo = faultTo;
}
/**
* Set WS-Addressing From endpoint reference.
*
* @param from endpoint
*/
public void setFrom(EndpointReference from) {
this.from = from;
}
/**
* Set listener used for incoming message.
*
* @param listener
*/
public void setListener(TransportListener listener) {
this.listener = listener;
}
/**
* Set transport used for incoming message.
*
* @param transportIn
*/
public void setTransportIn(TransportInDescription transportIn) {
this.transportIn = transportIn;
}
/**
* Set transport protocol used for incoming message.
*
* @param transportInProtocol ("http", "tcp", etc.)
*/
public void setTransportInProtocol(String transportInProtocol) {
this.transportInProtocol = transportInProtocol;
}
/**
* Set WS-Addressing MessageId.
*
* @param messageId URI string
*/
public void setMessageId(String messageId) {
this.messageId = messageId;
}
/**
* Set the general property definitions. Due to the way properties are
* stored, this will not effect the values of predefined properties with
* specific get/set methods.
*
* @param properties
*/
public void setProperties(Map properties) {
this.properties = properties;
}
/**
* General properties you need to pass in to the message context must be set
* via this method. This method can only be used for properties which do not
* have specific get/set methods.
* <p/>
* Here are some of the properties supported in Axis2.
* <p/>
* <a name="GenConst"></a></p>
* <h3>Generic Constants</h3>
* <ul>
* <a name="TRANSPORT_URL"></a></p>
* <p/>
* <li><strong>org.apache.axis2.Constants.Configuration.TRANSPORT_URL</strong>
* <p>Sometimes you want to send your SOAP message through a node, before it reaches to its destination. This means you want to give transport URL different from the URL of the ultimate destination. A typical example would be wanting to send this SOAP (or REST)message through a transparent proxy or through a message monitoring applet. How can that be done using the ServiceClient API?</p>
* <pre>
* options.setTo("http://destination.org");
* options.setProperty(MessageContextConstants.TRANSPORT_URL, "http://myProxy.org");
* </pre><p>This will send your SOAP message to "http://myProxy.org", but if WS-Addressing is enabled, wsa:To will contain "http://destination.org" as To address.</p>
* </li>
* <p> <a name="CHARACTER_SET_ENCODING"></a></p>
* <li><b>org.apache.axis2.Constants.Configuration.CHARACTER_SET_ENCODING</b>
* <p>This will enable user to set the character set encoding scheme to be used when sending the message. Default is set to "UTF-8"</p></li>
* <p/>
* <p><a name="ENABLE_MTOM"></a></p>
* <li><b>org.apache.axis2.Constants.Configuration.ENABLE_MTOM</b>
* <p>This will enable/disable MTOM support for outgoing messages.</p>
* <p>Possible values are: </p>
* <pre>"true"/"false" or Boolean.TRUE/Boolean.FALSE</pre>
* </li>
* </ul>
* <p><a name="Addressing"></a></p>
* <h3>WS-Addressing Module Specific Constants</h3>
* <ul>
* <p/>
* <a name="WS_ADDRESSING_VERSION"></a></p>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?