Search in sources :

Example 1 with Type

use of org.apache.axis.wsdl.symbolTable.Type in project Lucee by lucee.

the class SOAPUtil method toTypes.

private static Vector toTypes(List<TempType> res, boolean contained) {
    Iterator<TempType> it = res.iterator();
    Vector types = new Vector();
    Type t;
    TempType tt;
    Object o;
    while (it.hasNext()) {
        tt = it.next();
        o = t = toType(tt);
        if (contained)
            o = new ElementDecl(t, new QName(tt.name));
        types.add(o);
    }
    return types;
}
Also used : DefinedType(org.apache.axis.wsdl.symbolTable.DefinedType) BaseType(org.apache.axis.wsdl.symbolTable.BaseType) Type(org.apache.axis.wsdl.symbolTable.Type) QName(javax.xml.namespace.QName) ElementDecl(org.apache.axis.wsdl.symbolTable.ElementDecl) Vector(java.util.Vector)

Aggregations

Vector (java.util.Vector)1 QName (javax.xml.namespace.QName)1 BaseType (org.apache.axis.wsdl.symbolTable.BaseType)1 DefinedType (org.apache.axis.wsdl.symbolTable.DefinedType)1 ElementDecl (org.apache.axis.wsdl.symbolTable.ElementDecl)1 Type (org.apache.axis.wsdl.symbolTable.Type)1