本文整理汇总了Java中org.apache.axis.wsdl.symbolTable.BaseType类的典型用法代码示例。如果您正苦于以下问题:Java BaseType类的具体用法?Java BaseType怎么用?Java BaseType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BaseType类属于org.apache.axis.wsdl.symbolTable包,在下文中一共展示了BaseType类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getParamData
import org.apache.axis.wsdl.symbolTable.BaseType; //导入依赖的package包/类
/**
* Method getParamData
*
* @param c
* @param arg
*/
private Object getParamData(org.apache.axis.client.Call c, Parameter p, String arg) throws Exception {
// Get the QName representing the parameter type
QName paramType = org.apache.axis.wsdl.toJava.Utils.getXSIType(p);
TypeEntry type = p.getType();
if (type instanceof BaseType && ((BaseType) type).isBaseType()) {
DeserializerFactory factory = c.getTypeMapping().getDeserializer(paramType);
Deserializer deserializer = factory.getDeserializerAs(Constants.AXIS_SAX);
if (deserializer instanceof SimpleDeserializer) {
return ((SimpleDeserializer)deserializer).makeValue(arg);
}
}
throw new RuntimeException("not know how to convert '" + arg
+ "' into " + c);
}
示例2: toBaseType
import org.apache.axis.wsdl.symbolTable.BaseType; //导入依赖的package包/类
private static BaseType toBaseType(String ns, String type) {
if(StringUtil.isEmpty(ns) || StringUtil.isEmpty(type)) return null;
if("xsd".equalsIgnoreCase(ns)) {
for(int i=0;i<XSD.length;i++){
if(XSD[i].getLocalPart().equalsIgnoreCase(type.trim()))
return new BaseType(XSD[i]);
}
}
if("soap".equalsIgnoreCase(ns) || "soapenc".equalsIgnoreCase(ns)) {
for(int i=0;i<SOAP.length;i++){
if(SOAP[i].getLocalPart().equalsIgnoreCase(type.trim()))
return new BaseType(SOAP[i]);
}
}
return null;
}