org.apache.axis.client.Call.getProperty()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(5.2k)|赞(0)|评价(0)|浏览(137)

本文整理了Java中org.apache.axis.client.Call.getProperty()方法的一些代码示例,展示了Call.getProperty()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Call.getProperty()方法的具体详情如下:
包路径:org.apache.axis.client.Call
类名称:Call
方法名:getProperty

Call.getProperty介绍

[英]Returns the value associated with the named property.
[中]返回与命名属性关联的值。

代码示例

代码示例来源:origin: axis/axis

(Map)call.getProperty(JMSConstants.JMS_APPLICATION_MSG_PROPS);
if (callProps != null) {
  appProps.putAll(callProps);

代码示例来源:origin: axis/axis

return null;
} else if (method.getName().equals("_getProperty")) {
  return call.getProperty((String) objects[0]);
} else if (method.getName().equals("_getPropertyNames")) {
  return call.getPropertyNames();

代码示例来源:origin: org.apache.axis/axis

(Map)call.getProperty(JMSConstants.JMS_APPLICATION_MSG_PROPS);
if (callProps != null) {
  appProps.putAll(callProps);

代码示例来源:origin: org.apache.axis/axis

return null;
} else if (method.getName().equals("_getProperty")) {
  return call.getProperty((String) objects[0]);
} else if (method.getName().equals("_getPropertyNames")) {
  return call.getPropertyNames();

代码示例来源:origin: org.apache.axis/com.springsource.org.apache.axis

(Map)call.getProperty(JMSConstants.JMS_APPLICATION_MSG_PROPS);
if (callProps != null) {
  appProps.putAll(callProps);

代码示例来源:origin: org.apache.axis/com.springsource.org.apache.axis

return null;
} else if (method.getName().equals("_getProperty")) {
  return call.getProperty((String) objects[0]);
} else if (method.getName().equals("_getPropertyNames")) {
  return call.getPropertyNames();

代码示例来源:origin: axis/axis

String attachformat= (String)getProperty(
 ATTACHMENT_ENCAPSULATION_FORMAT);

代码示例来源:origin: org.apache.axis/axis

String attachformat= (String)getProperty(
 ATTACHMENT_ENCAPSULATION_FORMAT);

代码示例来源:origin: org.apache.axis/com.springsource.org.apache.axis

String attachformat= (String)getProperty(
 ATTACHMENT_ENCAPSULATION_FORMAT);

代码示例来源:origin: axis/axis

else
  tmp = call.getProperty(JMSConstants.DESTINATION);
  if (tmp != null && tmp instanceof String)
    context.setProperty(JMSConstants.DESTINATION, tmp);
  tmp = call.getProperty(JMSConstants.DELIVERY_MODE);
  if(tmp != null && tmp instanceof Integer)
    context.setProperty(JMSConstants.DELIVERY_MODE, tmp);
else
  tmp = call.getProperty(JMSConstants.PRIORITY);
  if(tmp != null && tmp instanceof Integer)
    context.setProperty(JMSConstants.PRIORITY, tmp);
else
  tmp = call.getProperty(JMSConstants.TIME_TO_LIVE);
  if(tmp != null && tmp instanceof Long)
    context.setProperty(JMSConstants.TIME_TO_LIVE, tmp);
else
  tmp = call.getProperty(JMSConstants.WAIT_FOR_RESPONSE);
  if(tmp != null && tmp instanceof Boolean)
    context.setProperty(JMSConstants.WAIT_FOR_RESPONSE, tmp);

代码示例来源:origin: org.apache.axis/com.springsource.org.apache.axis

else
  tmp = call.getProperty(JMSConstants.DESTINATION);
  if (tmp != null && tmp instanceof String)
    context.setProperty(JMSConstants.DESTINATION, tmp);
  tmp = call.getProperty(JMSConstants.DELIVERY_MODE);
  if(tmp != null && tmp instanceof Integer)
    context.setProperty(JMSConstants.DELIVERY_MODE, tmp);
else
  tmp = call.getProperty(JMSConstants.PRIORITY);
  if(tmp != null && tmp instanceof Integer)
    context.setProperty(JMSConstants.PRIORITY, tmp);
else
  tmp = call.getProperty(JMSConstants.TIME_TO_LIVE);
  if(tmp != null && tmp instanceof Long)
    context.setProperty(JMSConstants.TIME_TO_LIVE, tmp);
else
  tmp = call.getProperty(JMSConstants.WAIT_FOR_RESPONSE);
  if(tmp != null && tmp instanceof Boolean)
    context.setProperty(JMSConstants.WAIT_FOR_RESPONSE, tmp);

代码示例来源:origin: org.apache.axis/axis

else
  tmp = call.getProperty(JMSConstants.DESTINATION);
  if (tmp != null && tmp instanceof String)
    context.setProperty(JMSConstants.DESTINATION, tmp);
  tmp = call.getProperty(JMSConstants.DELIVERY_MODE);
  if(tmp != null && tmp instanceof Integer)
    context.setProperty(JMSConstants.DELIVERY_MODE, tmp);
else
  tmp = call.getProperty(JMSConstants.PRIORITY);
  if(tmp != null && tmp instanceof Integer)
    context.setProperty(JMSConstants.PRIORITY, tmp);
else
  tmp = call.getProperty(JMSConstants.TIME_TO_LIVE);
  if(tmp != null && tmp instanceof Long)
    context.setProperty(JMSConstants.TIME_TO_LIVE, tmp);
else
  tmp = call.getProperty(JMSConstants.WAIT_FOR_RESPONSE);
  if(tmp != null && tmp instanceof Boolean)
    context.setProperty(JMSConstants.WAIT_FOR_RESPONSE, tmp);

代码示例来源:origin: axis/axis

try {
  Message msg = new Message( env );
  if (getProperty(CHARACTER_SET_ENCODING) != null) {
    msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, getProperty(CHARACTER_SET_ENCODING));
  } else if (msgContext.getProperty(CHARACTER_SET_ENCODING) != null) {
    msg.setProperty(CHARACTER_SET_ENCODING, msgContext.getProperty(CHARACTER_SET_ENCODING));

代码示例来源:origin: org.apache.axis/axis

try {
  Message msg = new Message( env );
  if (getProperty(CHARACTER_SET_ENCODING) != null) {
    msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, getProperty(CHARACTER_SET_ENCODING));
  } else if (msgContext.getProperty(CHARACTER_SET_ENCODING) != null) {
    msg.setProperty(CHARACTER_SET_ENCODING, msgContext.getProperty(CHARACTER_SET_ENCODING));

代码示例来源:origin: org.apache.axis/com.springsource.org.apache.axis

try {
  Message msg = new Message( env );
  if (getProperty(CHARACTER_SET_ENCODING) != null) {
    msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, getProperty(CHARACTER_SET_ENCODING));
  } else if (msgContext.getProperty(CHARACTER_SET_ENCODING) != null) {
    msg.setProperty(CHARACTER_SET_ENCODING, msgContext.getProperty(CHARACTER_SET_ENCODING));

相关文章

微信公众号

最新文章

更多