|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use QName | |
javax.xml.namespace | This package contains the QName class. |
javax.xml.rpc | This package contains the core JAX-RPC APIs for the client programming model. |
javax.xml.rpc.encoding | |
javax.xml.rpc.handler | This package defines APIs for SOAP Message Handlers |
javax.xml.rpc.holders | This package contains the standard Java Holder classes. |
javax.xml.rpc.soap | This package defines APIs specific to the SOAP binding. |
Uses of QName in javax.xml.namespace |
Methods in javax.xml.namespace that return QName | |
static QName |
QName.valueOf(java.lang.String s)
Returns a QName holding the value of the specified String. |
Uses of QName in javax.xml.rpc |
Methods in javax.xml.rpc that return QName | |
QName |
Call.getParameterTypeByName(java.lang.String paramName)
Gets the XML type of a parameter by name |
QName |
Call.getReturnType()
Gets the return type for a specific operation |
QName |
Call.getOperationName()
Gets the name of the operation to be invoked using this Call instance. |
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 | |
boolean |
Call.isParameterAndReturnSpecRequired(QName operationName)
Indicates whether addParameter and
setReturnType methods
are to be invoked to specify the parameter and return type
specification for a specific operation. |
void |
Call.addParameter(java.lang.String paramName,
QName xmlType,
ParameterMode parameterMode)
Adds a parameter type and mode for a specific operation. |
void |
Call.addParameter(java.lang.String paramName,
QName xmlType,
java.lang.Class javaType,
ParameterMode parameterMode)
Adds a parameter type and mode for a specific operation. |
void |
Call.setReturnType(QName xmlType)
Sets the return type for a specific operation. |
void |
Call.setReturnType(QName xmlType,
java.lang.Class javaType)
Sets the return type for a specific operation. |
void |
Call.setOperationName(QName operationName)
Sets the name of the operation to be invoked using this Call instance. |
void |
Call.setPortTypeName(QName portType)
Sets the qualified name of the port type. |
java.lang.Object |
Call.invoke(QName operationName,
java.lang.Object[] inputParams)
Invokes a specific operation using a synchronous request-response interaction mode. |
abstract Service |
ServiceFactory.createService(java.net.URL wsdlDocumentLocation,
QName serviceName)
Create a Service instance. |
abstract Service |
ServiceFactory.createService(QName serviceName)
Create a Service instance. |
java.rmi.Remote |
Service.getPort(QName portName,
java.lang.Class serviceEndpointInterface)
The getPort method returns either an instance of a generated stub implementation class or a dynamic proxy. |
Call[] |
Service.getCalls(QName portName)
Gets an array of preconfigured Call objects for
invoking operations on the specified port. |
Call |
Service.createCall(QName portName)
Creates a Call instance. |
Call |
Service.createCall(QName portName,
QName operationName)
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 |
Fields in javax.xml.rpc.encoding declared as QName | |
static QName |
XMLType.XSD_STRING
|
static QName |
XMLType.XSD_FLOAT
|
static QName |
XMLType.XSD_BOOLEAN
|
static QName |
XMLType.XSD_DOUBLE
|
static QName |
XMLType.XSD_INTEGER
|
static QName |
XMLType.XSD_INT
|
static QName |
XMLType.XSD_LONG
|
static QName |
XMLType.XSD_SHORT
|
static QName |
XMLType.XSD_DECIMAL
|
static QName |
XMLType.XSD_BASE64
|
static QName |
XMLType.XSD_HEXBINARY
|
static QName |
XMLType.XSD_BYTE
|
static QName |
XMLType.XSD_DATETIME
|
static QName |
XMLType.XSD_QNAME
|
static QName |
XMLType.SOAP_STRING
|
static QName |
XMLType.SOAP_BOOLEAN
|
static QName |
XMLType.SOAP_DOUBLE
|
static QName |
XMLType.SOAP_BASE64
|
static QName |
XMLType.SOAP_FLOAT
|
static QName |
XMLType.SOAP_INT
|
static QName |
XMLType.SOAP_LONG
|
static QName |
XMLType.SOAP_SHORT
|
static QName |
XMLType.SOAP_BYTE
|
static QName |
XMLType.SOAP_ARRAY
|
Methods in javax.xml.rpc.encoding with parameters of type QName | |
boolean |
TypeMapping.isRegistered(java.lang.Class javaType,
QName xmlType)
Checks whether or not type mapping between specified XML type and Java type is registered. |
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. |
Uses of QName in javax.xml.rpc.handler |
Methods in javax.xml.rpc.handler that return QName | |
abstract QName[] |
GenericHandler.getHeaders()
Gets the header blocks processed by this Handler instance. |
QName[] |
Handler.getHeaders()
Gets the header blocks that can be processed by this Handler instance. |
QName[] |
HandlerInfo.getHeaders()
Gets the header blocks processed by this Handler. |
Methods in javax.xml.rpc.handler with parameters of type QName | |
java.util.List |
HandlerRegistry.getHandlerChain(QName portName)
Gets the handler chain for the specified service endpoint. |
void |
HandlerRegistry.setHandlerChain(QName portName,
java.util.List chain)
Sets the handler chain for the specified service endpoint as a java.util.List . |
void |
HandlerInfo.setHeaders(QName[] headers)
Sets the header blocks processed by this Handler. |
Constructors in javax.xml.rpc.handler with parameters of type QName | |
HandlerInfo(java.lang.Class handlerClass,
java.util.Map config,
QName[] headers)
Constructor for HandlerInfo |
Uses of QName in javax.xml.rpc.holders |
Fields in javax.xml.rpc.holders declared as QName | |
QName |
QNameHolder.value
|
Constructors in javax.xml.rpc.holders with parameters of type QName | |
QNameHolder(QName myQName)
|
Uses of QName in javax.xml.rpc.soap |
Methods in javax.xml.rpc.soap that return QName | |
QName |
SOAPFaultException.getFaultCode()
Gets the faultcode element. |
Constructors in javax.xml.rpc.soap with parameters of type QName | |
SOAPFaultException(QName faultcode,
java.lang.String faultstring,
java.lang.String faultactor,
Detail faultdetail)
Constructor for the SOAPFaultException |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |