Uses of Class
javax.xml.rpc.namespace.QName

Packages that use QName
javax.xml.rpc   
javax.xml.rpc.encoding   
javax.xml.rpc.holders   
org.apache.axis   
org.apache.axis.client   
org.apache.axis.deployment   
org.apache.axis.deployment.v2dd   
org.apache.axis.deployment.wsdd   
org.apache.axis.deployment.wsml   
org.apache.axis.encoding   
org.apache.axis.handlers   
org.apache.axis.handlers.soap   
org.apache.axis.message   
org.apache.axis.providers   
org.apache.axis.utils   
 

Uses of QName in javax.xml.rpc
 

Methods in javax.xml.rpc that return QName
 QName Call.getPortTypeName()
          Gets the qualified name of the port type.
 QName Service.getServiceName()
          Gets the name of this Service.
 

Methods in javax.xml.rpc with parameters of type QName
 void Call.setPortTypeName(QName portType)
          Sets the qualified name of the port type.
 java.rmi.Remote Service.getPort(QName portName, java.lang.Class proxyInterface)
          The getPort method returns a dynamic proxy for the specified service port.
 Call Service.createCall(QName portName)
          Creates a Call instance.
 Call Service.createCall(QName portName, java.lang.String operationName)
          Creates a Call instance.
 

Uses of QName in javax.xml.rpc.encoding
 

Methods in javax.xml.rpc.encoding that return QName
 QName XMLType.getType()
          Method getType
 

Methods in javax.xml.rpc.encoding with parameters of type QName
 void TypeMapping.register(java.lang.Class javaType, QName xmlType, SerializerFactory sf, DeserializerFactory dsf)
          Registers SerializerFactory and DeserializerFactory for a specific type mapping between an XML type and Java type.
 SerializerFactory TypeMapping.getSerializer(java.lang.Class javaType, QName xmlType)
          Gets the SerializerFactory registered for the specified pair of Java type and XML data type.
 DeserializerFactory TypeMapping.getDeserializer(java.lang.Class javaType, QName xmlType)
          Gets the DeserializerFactory registered for the specified pair of Java type and XML data type.
 void TypeMapping.removeSerializer(java.lang.Class javaType, QName xmlType)
          Removes the SerializerFactory registered for the specified pair of Java type and XML data type.
 void TypeMapping.removeDeserializer(java.lang.Class javaType, QName xmlType)
          Removes the DeserializerFactory registered for the specified pair of Java type and XML data type.
 void XMLType.setType(QName type)
          Method setType
 

Uses of QName in javax.xml.rpc.holders
 

Fields in javax.xml.rpc.holders declared as QName
 QName QNameHolder._value
          Field _value
 

Constructors in javax.xml.rpc.holders with parameters of type QName
QNameHolder(QName value)
          Constructor QNameHolder
 

Uses of QName in org.apache.axis
 

Fields in org.apache.axis declared as QName
static QName Constants.QNAME_FAULTCODE
           
static QName Constants.QNAME_FAULTSTRING
           
static QName Constants.QNAME_FAULTACTOR
           
static QName Constants.QNAME_FAULTDETAILS
           
 

Methods in org.apache.axis with parameters of type QName
 boolean SimpleChain.canHandleBlock(QName qname)
           
 boolean FaultableHandler.canHandleBlock(QName qname)
           
 boolean Handler.canHandleBlock(QName qname)
          Can this Handler process this QName?
 void AxisEngine.registerTypeMapping(QName qName, java.lang.Class cls, DeserializerFactory deserFactory, Serializer serializer)
          Register a new global type mapping
 void AxisEngine.unregisterTypeMapping(QName qName, java.lang.Class cls)
          Unregister a global type mapping
 boolean SimpleTargetedChain.canHandleBlock(QName qname)
           
 

Uses of QName in org.apache.axis.client
 

Methods in org.apache.axis.client that return QName
 QName Service.getServiceName()
          Returns the qualified name of the service (if one is set).
 QName Call.getPortTypeName()
          Returns the fully qualified name of the port for this Call object (if there is one).
 

Methods in org.apache.axis.client with parameters of type QName
 void ServiceClient.addSerializer(java.lang.Class _class, QName qName, Serializer serializer)
          Deprecated. Map a type for serialization.
 void ServiceClient.addDeserializerFactory(QName qName, java.lang.Class _class, DeserializerFactory deserializerFactory)
          Deprecated. Map a type for deserialization.
 java.rmi.Remote Service.getPort(QName portName, java.lang.Class proxyInterface)
          Not implemented yet
 Call Service.createCall(QName portName)
          Creates a new Call object - will prefill as much info from the WSDL as it can.
 Call Service.createCall(QName portName, java.lang.String operationName)
          Creates a new Call object - will prefill as much info from the WSDL as it can.
 void Call.setOperation(QName portName, java.lang.String opName)
           
 void Call.setPortTypeName(QName portType)
          Sets the port type of this Call object.
 void Call.addSerializer(java.lang.Class _class, QName qName, Serializer serializer)
          Map a type for serialization.
 void Call.addDeserializerFactory(QName qName, java.lang.Class _class, DeserializerFactory deserFactory)
          Map a type for deserialization.
 

Constructors in org.apache.axis.client with parameters of type QName
Service(java.net.URL wsdlDoc, QName serviceName)
          Constructs a new Service object for the service in the WSDL document pointed to by the wsdlDoc URL and serviceName parameters.
Service(java.lang.String wsdlLocation, QName serviceName)
          Constructs a new Service object for the service in the WSDL document pointed to by the wsdlLocation and serviceName parameters.
Service(java.io.InputStream wsdlInputStream, QName serviceName)
          Constructs a new Service object for the service in the WSDL document in the wsdlInputStream and serviceName parameters.
 

Uses of QName in org.apache.axis.deployment
 

Methods in org.apache.axis.deployment that return QName
 QName DeployableItem.getQName()
          Get the QName of this item
 

Methods in org.apache.axis.deployment with parameters of type QName
abstract  Handler DeploymentRegistry.getHandler(QName qname)
          retrieve an instance of the named handler
abstract  Handler DeploymentRegistry.getService(QName qname)
          retrieve an instance of the named handler
abstract  Handler DeploymentRegistry.getTransport(QName qname)
          retrieve an instance of the named transport
abstract  void DeploymentRegistry.removeDeployedItem(QName qname)
          remove the given item
abstract  void DeploymentRegistry.undeployHandler(QName qname)
          remove the given handler
abstract  void DeploymentRegistry.undeployService(QName qname)
          remove the given service
abstract  void DeploymentRegistry.undeployTransport(QName qname)
          remove the given transport
 Handler SimpleDeploymentManager.getHandler(QName qname)
          Return an instance of the deployed item
 Handler SimpleDeploymentManager.getService(QName qname)
          Return an instance of the deployed service
 Handler SimpleDeploymentManager.getTransport(QName qname)
          Return an instance of the deployed transport
 void SimpleDeploymentManager.removeDeployedItem(QName qname)
          remove the given item
 void SimpleDeploymentManager.undeployHandler(QName qname)
          remove the given handler
 void SimpleDeploymentManager.undeployService(QName qname)
          remove the given item
 void SimpleDeploymentManager.undeployTransport(QName qname)
          remove the given item
 

Uses of QName in org.apache.axis.deployment.v2dd
 

Methods in org.apache.axis.deployment.v2dd that return QName
 QName V2DDDeployableItem.getQName()
           
 QName V2DDMap.getQName()
           
 

Uses of QName in org.apache.axis.deployment.wsdd
 

Fields in org.apache.axis.deployment.wsdd declared as QName
protected  QName WSDDTypeMapping.qname
           
protected  QName WSDDTypeMapping.typeQName
           
static QName WSDDConstants.JAVARPC_PROVIDER
           
static QName WSDDConstants.JAVAMSG_PROVIDER
           
static QName WSDDConstants.HANDLER_PROVIDER
           
static QName WSDDConstants.EJB_PROVIDER
           
static QName WSDDConstants.PARAM_QNAME
           
static QName WSDDConstants.DOC_QNAME
           
static QName WSDDConstants.DEPLOY_QNAME
           
static QName WSDDConstants.UNDEPLOY_QNAME
           
static QName WSDDConstants.REQFLOW_QNAME
           
static QName WSDDConstants.RESPFLOW_QNAME
           
static QName WSDDConstants.FAULTFLOW_QNAME
           
static QName WSDDConstants.HANDLER_QNAME
           
static QName WSDDConstants.CHAIN_QNAME
           
static QName WSDDConstants.SERVICE_QNAME
           
static QName WSDDConstants.TRANSPORT_QNAME
           
static QName WSDDConstants.GLOBAL_QNAME
           
static QName WSDDConstants.TYPE_QNAME
           
static QName WSDDConstants.BEANMAPPING_QNAME
           
 

Methods in org.apache.axis.deployment.wsdd that return QName
protected abstract  QName WSDDElement.getElementName()
          Return the element name of a particular subclass.
 QName WSDDDeployableItem.getQName()
           
 QName WSDDDeployableItem.getType()
           
protected  QName WSDDHandler.getElementName()
           
protected  QName WSDDDocumentation.getElementName()
           
protected  QName WSDDChain.getElementName()
           
protected  QName WSDDRequestFlow.getElementName()
           
protected  QName WSDDTypeMapping.getElementName()
           
 QName WSDDTypeMapping.getQName()
           
protected  QName WSDDBeanMapping.getElementName()
           
protected  QName WSDDResponseFlow.getElementName()
           
 QName WSDDTargetedChain.getPivotQName()
           
protected  QName WSDDService.getElementName()
           
 QName WSDDService.getProviderQName()
           
protected  QName WSDDGlobalConfiguration.getElementName()
           
 QName WSDDGlobalConfiguration.getType()
           
protected  QName WSDDOperation.getElementName()
           
protected  QName WSDDFaultFlow.getElementName()
           
protected  QName WSDDUndeployment.getElementName()
           
protected  QName WSDDDeployment.getElementName()
           
protected  QName WSDDTransport.getElementName()
           
 

Methods in org.apache.axis.deployment.wsdd with parameters of type QName
 void WSDDDeployableItem.setQName(QName qname)
           
 void WSDDDeployableItem.setType(QName type)
           
 void WSDDTypeMapping.setQName(QName name)
           
 WSDDFaultFlow WSDDTargetedChain.getFaultFlow(QName name)
           
 void WSDDTargetedChain.setPivotQName(QName pivotQName)
           
 void WSDDService.setProviderQName(QName providerQName)
           
 WSDDFaultFlow WSDDService.getFaultFlow(QName name)
           
 WSDDFaultFlow WSDDGlobalConfiguration.getFaultFlow(QName name)
           
static void WSDDProvider.registerProvider(QName uri, WSDDProvider prov)
           
static Handler WSDDProvider.getInstance(QName providerType, WSDDService service, DeploymentRegistry registry)
           
 void WSDDUndeployment.addHandler(QName handler)
           
 void WSDDUndeployment.addChain(QName chain)
           
 void WSDDUndeployment.addTransport(QName transport)
           
 void WSDDUndeployment.addService(QName service)
           
 WSDDHandler WSDDDeployment.getHandler(QName name)
           
 WSDDTransport WSDDDeployment.getTransport(QName name)
           
 WSDDService WSDDDeployment.getService(QName name)
           
 

Uses of QName in org.apache.axis.deployment.wsml
 

Methods in org.apache.axis.deployment.wsml that return QName
 QName WSMLDeployableItem.getQName()
           
 

Uses of QName in org.apache.axis.encoding
 

Fields in org.apache.axis.encoding declared as QName
static QName SOAPTypeMappingRegistry.XSD_STRING
           
static QName SOAPTypeMappingRegistry.XSD_BOOLEAN
           
static QName SOAPTypeMappingRegistry.XSD_DOUBLE
           
static QName SOAPTypeMappingRegistry.XSD_FLOAT
           
static QName SOAPTypeMappingRegistry.XSD_INT
           
static QName SOAPTypeMappingRegistry.XSD_LONG
           
static QName SOAPTypeMappingRegistry.XSD_SHORT
           
static QName SOAPTypeMappingRegistry.XSD_BYTE
           
static QName SOAPTypeMappingRegistry.XSD_DECIMAL
           
static QName SOAPTypeMappingRegistry.XSD_BASE64
           
static QName SOAPTypeMappingRegistry.XSD_HEXBIN
           
static QName SOAPTypeMappingRegistry.XSD_ANYTYPE
           
static QName SOAPTypeMappingRegistry.SOAP_BASE64
           
static QName SOAPTypeMappingRegistry.SOAP_STRING
           
static QName SOAPTypeMappingRegistry.SOAP_BOOLEAN
           
static QName SOAPTypeMappingRegistry.SOAP_DOUBLE
           
static QName SOAPTypeMappingRegistry.SOAP_FLOAT
           
static QName SOAPTypeMappingRegistry.SOAP_INT
           
static QName SOAPTypeMappingRegistry.SOAP_LONG
           
static QName SOAPTypeMappingRegistry.SOAP_SHORT
           
static QName SOAPTypeMappingRegistry.SOAP_BYTE
           
static QName SOAPTypeMappingRegistry.SOAP_ARRAY
           
static QName SOAPTypeMappingRegistry.TYPE_MAP
           
static QName SOAPTypeMappingRegistry.TYPE_ELEMENT
           
static QName SOAPTypeMappingRegistry.TYPE_VECTOR
           
static QName SOAPTypeMappingRegistry.XSD_DATE
           
 QName ArraySerializer.arrayType
           
 QName ServiceDescription.returnType
           
 

Methods in org.apache.axis.encoding that return QName
 QName XMLType.getType()
           
 QName SerializationContext.getQNameForClass(java.lang.Class cls)
           
 QName TypeMappingRegistry.getTypeQName(java.lang.Class _class)
           
 QName SOAPTypeMappingRegistry.getTypeQName(java.lang.Class _class)
           
 QName DeserializationContext.getQNameFromString(java.lang.String qNameStr)
           
 QName DeserializationContext.getTypeFromAttributes(java.lang.String namespace, java.lang.String localName, org.xml.sax.Attributes attrs)
           
 QName ServiceDescription.getInputParamTypeByName(java.lang.String paramName)
           
 QName ServiceDescription.getInputParamTypeByPos(int position)
           
 QName ServiceDescription.getParamTypeByName(java.lang.String messageType, java.lang.String paramName)
          This one is what the outside world wants to use, I think.
 QName ServiceDescription.getOutputParamTypeByName(java.lang.String paramName)
           
 QName ServiceDescription.getOutputParamTypeByPos(int position)
           
 QName ServiceDescription.getReturnType()
           
 

Methods in org.apache.axis.encoding with parameters of type QName
 void DateSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a date.
 void XMLType.setType(QName type)
           
 java.lang.String SerializationContext.qName2String(QName qName)
           
 void SerializationContext.serialize(QName qName, org.xml.sax.Attributes attributes, java.lang.Object value)
           
 void SerializationContext.startElement(QName qName, org.xml.sax.Attributes attributes)
           
 void SerializationContext.writeElement(QName qName, org.xml.sax.Attributes attributes)
          Convenience method for writing an element with no structure inside it.
 void TypeMappingRegistry.addSerializer(java.lang.Class _class, QName qName, Serializer serializer)
           
 void TypeMappingRegistry.addDeserializerFactory(QName qname, java.lang.Class _class, DeserializerFactory deserializerFactory)
           
 java.lang.Class TypeMappingRegistry.getClassForQName(QName type)
           
 Deserializer TypeMappingRegistry.getDeserializer(QName qname)
           
 void TypeMappingRegistry.removeDeserializer(QName qname)
           
 boolean TypeMappingRegistry.hasDeserializer(QName qname)
           
 org.xml.sax.Attributes TypeMappingRegistry.setTypeAttribute(org.xml.sax.Attributes attributes, QName type, SerializationContext context)
           
 void TypeMappingRegistry.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
           
 void SOAPTypeMappingRegistry.ObjSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
           
 void MapSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a Map Walk the collection of keys, serializing each key/value pair inside an element.
 void JAFDataHandlerSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a JAF DataHandler quantity.
 void ArraySerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
           
 void Serializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
           
 void EnumSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize an enumeration
 void ElementSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a DOM Element
 void FloatSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a Float quantity.
 void HexSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a Hex quantity.
 void Base64Serializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a base64 quantity.
 void ServiceDescription.addInputParam(java.lang.String name, QName type)
           
 void ServiceDescription.addOutputParam(java.lang.String name, QName type)
           
 void ServiceDescription.setReturnType(QName type)
           
 void SOAPEncoding.serialize(QName qname, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
           
 void BeanSerializer.serialize(QName name, org.xml.sax.Attributes attributes, java.lang.Object value, SerializationContext context)
          Serialize a bean.
 

Constructors in org.apache.axis.encoding with parameters of type QName
XMLType(QName type)
           
 

Uses of QName in org.apache.axis.handlers
 

Fields in org.apache.axis.handlers declared as QName
static QName SimpleSessionHandler.sessionHeaderName
           
 

Methods in org.apache.axis.handlers with parameters of type QName
 boolean BasicHandler.canHandleBlock(QName qname)
           
 

Uses of QName in org.apache.axis.handlers.soap
 

Methods in org.apache.axis.handlers.soap with parameters of type QName
 void SOAPService.registerTypeMapping(QName qName, java.lang.Class cls, DeserializerFactory deserFactory, Serializer serializer)
          Register a new service type mapping
 void SOAPService.unregisterTypeMapping(QName qName, java.lang.Class cls)
          Unregister a service type mapping
 

Uses of QName in org.apache.axis.message
 

Fields in org.apache.axis.message declared as QName
protected  QName MessageElement.typeQName
           
 

Methods in org.apache.axis.message that return QName
 QName MessageElement.getType()
           
 

Methods in org.apache.axis.message with parameters of type QName
 void MessageElement.setType(QName qName)
           
 java.lang.Object MessageElement.getValueAsType(QName type)
           
 void MessageElement.addAttribute(java.lang.String namespace, java.lang.String localName, QName value)
           
 void SimpleHandlerFactory.addHandlerForQName(QName qName, java.lang.Class cls)
           
 

Uses of QName in org.apache.axis.providers
 

Methods in org.apache.axis.providers that return QName
 QName[] BasicProvider.getOperationQNames()
           
 

Methods in org.apache.axis.providers with parameters of type QName
 void BasicProvider.addOperation(java.lang.String name, QName qname)
           
 java.lang.String BasicProvider.getOperationName(QName qname)
           
 

Uses of QName in org.apache.axis.utils
 

Subclasses of QName in org.apache.axis.utils
 class QFault
          This class allows us to easily implement extensible qualified fault codes as defined by the SOAP Specification.
 

Methods in org.apache.axis.utils that return QName
static QName XMLUtils.getQNameFromString(java.lang.String str, org.w3c.dom.Node e)
          Return a QName when passed a string like "foo:bar" by mapping the "foo" prefix to a namespace in the context of the given Node.
 

Constructors in org.apache.axis.utils with parameters of type QName
QFault(QName qname)
           
QFault(QName qname, java.lang.String minorCode)
           
 



Copyright © 2001 Apache XML Project. All Rights Reserved.