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

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

本文整理了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

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

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

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

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

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

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

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

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

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

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

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

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

  1. String attachformat= (String)getProperty(
  2. ATTACHMENT_ENCAPSULATION_FORMAT);

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

  1. String attachformat= (String)getProperty(
  2. ATTACHMENT_ENCAPSULATION_FORMAT);

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

  1. String attachformat= (String)getProperty(
  2. ATTACHMENT_ENCAPSULATION_FORMAT);

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

  1. else
  2. tmp = call.getProperty(JMSConstants.DESTINATION);
  3. if (tmp != null && tmp instanceof String)
  4. context.setProperty(JMSConstants.DESTINATION, tmp);
  5. tmp = call.getProperty(JMSConstants.DELIVERY_MODE);
  6. if(tmp != null && tmp instanceof Integer)
  7. context.setProperty(JMSConstants.DELIVERY_MODE, tmp);
  8. else
  9. tmp = call.getProperty(JMSConstants.PRIORITY);
  10. if(tmp != null && tmp instanceof Integer)
  11. context.setProperty(JMSConstants.PRIORITY, tmp);
  12. else
  13. tmp = call.getProperty(JMSConstants.TIME_TO_LIVE);
  14. if(tmp != null && tmp instanceof Long)
  15. context.setProperty(JMSConstants.TIME_TO_LIVE, tmp);
  16. else
  17. tmp = call.getProperty(JMSConstants.WAIT_FOR_RESPONSE);
  18. if(tmp != null && tmp instanceof Boolean)
  19. context.setProperty(JMSConstants.WAIT_FOR_RESPONSE, tmp);

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

  1. else
  2. tmp = call.getProperty(JMSConstants.DESTINATION);
  3. if (tmp != null && tmp instanceof String)
  4. context.setProperty(JMSConstants.DESTINATION, tmp);
  5. tmp = call.getProperty(JMSConstants.DELIVERY_MODE);
  6. if(tmp != null && tmp instanceof Integer)
  7. context.setProperty(JMSConstants.DELIVERY_MODE, tmp);
  8. else
  9. tmp = call.getProperty(JMSConstants.PRIORITY);
  10. if(tmp != null && tmp instanceof Integer)
  11. context.setProperty(JMSConstants.PRIORITY, tmp);
  12. else
  13. tmp = call.getProperty(JMSConstants.TIME_TO_LIVE);
  14. if(tmp != null && tmp instanceof Long)
  15. context.setProperty(JMSConstants.TIME_TO_LIVE, tmp);
  16. else
  17. tmp = call.getProperty(JMSConstants.WAIT_FOR_RESPONSE);
  18. if(tmp != null && tmp instanceof Boolean)
  19. context.setProperty(JMSConstants.WAIT_FOR_RESPONSE, tmp);

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

  1. else
  2. tmp = call.getProperty(JMSConstants.DESTINATION);
  3. if (tmp != null && tmp instanceof String)
  4. context.setProperty(JMSConstants.DESTINATION, tmp);
  5. tmp = call.getProperty(JMSConstants.DELIVERY_MODE);
  6. if(tmp != null && tmp instanceof Integer)
  7. context.setProperty(JMSConstants.DELIVERY_MODE, tmp);
  8. else
  9. tmp = call.getProperty(JMSConstants.PRIORITY);
  10. if(tmp != null && tmp instanceof Integer)
  11. context.setProperty(JMSConstants.PRIORITY, tmp);
  12. else
  13. tmp = call.getProperty(JMSConstants.TIME_TO_LIVE);
  14. if(tmp != null && tmp instanceof Long)
  15. context.setProperty(JMSConstants.TIME_TO_LIVE, tmp);
  16. else
  17. tmp = call.getProperty(JMSConstants.WAIT_FOR_RESPONSE);
  18. if(tmp != null && tmp instanceof Boolean)
  19. context.setProperty(JMSConstants.WAIT_FOR_RESPONSE, tmp);

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

  1. try {
  2. Message msg = new Message( env );
  3. if (getProperty(CHARACTER_SET_ENCODING) != null) {
  4. msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, getProperty(CHARACTER_SET_ENCODING));
  5. } else if (msgContext.getProperty(CHARACTER_SET_ENCODING) != null) {
  6. msg.setProperty(CHARACTER_SET_ENCODING, msgContext.getProperty(CHARACTER_SET_ENCODING));

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

  1. try {
  2. Message msg = new Message( env );
  3. if (getProperty(CHARACTER_SET_ENCODING) != null) {
  4. msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, getProperty(CHARACTER_SET_ENCODING));
  5. } else if (msgContext.getProperty(CHARACTER_SET_ENCODING) != null) {
  6. msg.setProperty(CHARACTER_SET_ENCODING, msgContext.getProperty(CHARACTER_SET_ENCODING));

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

  1. try {
  2. Message msg = new Message( env );
  3. if (getProperty(CHARACTER_SET_ENCODING) != null) {
  4. msg.setProperty(SOAPMessage.CHARACTER_SET_ENCODING, getProperty(CHARACTER_SET_ENCODING));
  5. } else if (msgContext.getProperty(CHARACTER_SET_ENCODING) != null) {
  6. msg.setProperty(CHARACTER_SET_ENCODING, msgContext.getProperty(CHARACTER_SET_ENCODING));

相关文章