javax.xml.rpc.encoding

Interface TypeMapping


  • public interface TypeMapping
    The javax.xml.rpc.encoding.TypeMapping is the base interface for the representation of a type mapping. A TypeMapping implementation class may support one or more encoding styles.

    For its supported encoding styles, a TypeMapping instance maintains a set of tuples of the type {Java type, SerializerFactory, DeserializerFactory, XML type}.

    Version:
    1.0
    Author:
    Rahul Sharma
    • Method Detail

      • getSupportedEncodings

        String[] getSupportedEncodings()
        Returns the encodingStyle URIs (as String[]) supported by this TypeMapping instance. A TypeMapping that contains only encoding style independent serializers and deserializers returns null from this method.
        Returns:
        Array of encodingStyle URIs for the supported encoding styles
      • setSupportedEncodings

        void setSupportedEncodings(String[] encodingStyleURIs)
        Sets the encodingStyle URIs supported by this TypeMapping instance. A TypeMapping that contains only encoding independent serializers and deserializers requires null as the parameter for this method.
        Parameters:
        encodingStyleURIs - Array of encodingStyle URIs for the supported encoding styles
      • isRegistered

        boolean isRegistered(Class javaType,
                             QName xmlType)
        Checks whether or not type mapping between specified XML type and Java type is registered.
        Parameters:
        javaType - Class of the Java type
        xmlType - Qualified name of the XML data type
        Returns:
        boolean; true if type mapping between the specified XML type and Java type is registered; otherwise false
      • register

        void register(Class javaType,
                      QName xmlType,
                      SerializerFactory sf,
                      DeserializerFactory dsf)
        Registers SerializerFactory and DeserializerFactory for a specific type mapping between an XML type and Java type. This method replaces any existing registered SerializerFactory DeserializerFactory instances.
        Parameters:
        javaType - Class of the Java type
        xmlType - Qualified name of the XML data type
        sf - SerializerFactory
        dsf - DeserializerFactory
        Throws:
        JAXRPCException - If any error during the registration
      • getSerializer

        SerializerFactory getSerializer(Class javaType,
                                        QName xmlType)
        Gets the SerializerFactory registered for the specified pair of Java type and XML data type.
        Parameters:
        javaType - Class of the Java type
        xmlType - Qualified name of the XML data type
        Returns:
        Registered SerializerFactory or null if there is no registered factory
      • getDeserializer

        DeserializerFactory getDeserializer(Class javaType,
                                            QName xmlType)
        Gets the DeserializerFactory registered for the specified pair of Java type and XML data type.
        Parameters:
        javaType - Class of the Java type
        xmlType - Qualified name of the XML data type
        Returns:
        Registered DeserializerFactory or null if there is no registered factory
      • removeSerializer

        void removeSerializer(Class javaType,
                              QName xmlType)
        Removes the SerializerFactory registered for the specified pair of Java type and XML data type.
        Throws:
        JAXRPCException - If there is error in removing the registered SerializerFactory
      • removeDeserializer

        void removeDeserializer(Class javaType,
                                QName xmlType)
        Removes the DeserializerFactory registered for the specified pair of Java type and XML data type.
        Throws:
        JAXRPCException - If there is error in removing the registered DeserializerFactory

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 20:47:59 Cette version de la page est en cache (à la date du 21/08/2025 20:47:59) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 18/04/2008, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/xml/rpc/encoding/TypeMapping.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, TypeMapping (Java(TM) EE 7 Specification APIs)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.