クラス
javax.xml.bind.JAXBContextの使用
- 
JAXBContextを使用しているパッケージ パッケージ 説明 javax.xml.bind 非整列化、整列化および検証機能を含む実行時バインディング・フレームワークをクライアント・アプリケーションに提供します。javax.xml.bind.util 便利なクライアント・ユーティリティ・クラス。javax.xml.ws このパッケージは、コアJAX-WS APIを含みます。javax.xml.ws.handler.soap このパッケージは、SOAPメッセージ・ハンドラ用のAPIを定義しています。javax.xml.ws.spi このパッケージは、JAX-WSのSPIを定義します。 - 
- 
javax.xml.bindでのJAXBContextの使用
JAXBContextを返すjavax.xml.bind内のメソッド 修飾子と型 メソッド 説明 JAXBContextJAXBContextFactory. createContext(Class<?>[] classesToBeBound, Map<String,?> properties)JAXBContextクラスの新しいインスタンスを作成します。JAXBContextJAXBContextFactory. createContext(String contextPath, ClassLoader classLoader, Map<String,?> properties)JAXBContextクラスの新しいインスタンスを作成します。static JAXBContextJAXBContext. newInstance(Class<?>... classesToBeBound)JAXBContextクラスの新しいインスタンスを作成します。static JAXBContextJAXBContext. newInstance(Class<?>[] classesToBeBound, Map<String,?> properties)JAXBContextクラスの新しいインスタンスを作成します。static JAXBContextJAXBContext. newInstance(String contextPath)JAXBContextクラスの新しいインスタンスを作成します。static JAXBContextJAXBContext. newInstance(String contextPath, ClassLoader classLoader)JAXBContextクラスの新しいインスタンスを作成します。static JAXBContextJAXBContext. newInstance(String contextPath, ClassLoader classLoader, Map<String,?> properties)JAXBContextクラスの新しいインスタンスを作成します。 - 
javax.xml.bind.utilでのJAXBContextの使用
JAXBContext型のパラメータを持つjavax.xml.bind.util内のコンストラクタ コンストラクタ 説明 JAXBResult(JAXBContext context)非整列化するために指定されたJAXBContextを使用した新しいインスタンスを作成します。JAXBSource(JAXBContext context, Object contentObject)指定されたコンテンツ・オブジェクトの新しいSourceを作成します。 - 
javax.xml.wsでのJAXBContextの使用
JAXBContext型のパラメータを持つjavax.xml.ws内のメソッド 修飾子と型 メソッド 説明 Dispatch<Object>Service. createDispatch(QName portName, JAXBContext context, Service.Mode mode)JAXB生成オブジェクトで使用するDispatchインスタンスを作成します。Dispatch<Object>Service. createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features)JAXB生成オブジェクトで使用するDispatchインスタンスを作成します。Dispatch<Object>Service. createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features)JAXB生成オブジェクトで使用するDispatchインスタンスを作成します。ObjectLogicalMessage. getPayload(JAXBContext context)JAXBオブジェクトとしてメッセージ・ペイロードを取得します。voidLogicalMessage. setPayload(Object payload, JAXBContext context)メッセージのペイロードを設定します。 - 
javax.xml.ws.handler.soapでのJAXBContextの使用
JAXBContext型のパラメータを持つjavax.xml.ws.handler.soap内のメソッド 修飾子と型 メソッド 説明 Object[]SOAPMessageContext. getHeaders(QName header, JAXBContext context, boolean allRoles)メッセージ・コンテキストのメッセージから特定の修飾名を持つヘッダーを取得します。 - 
javax.xml.ws.spiでのJAXBContextの使用
JAXBContext型のパラメータを持つjavax.xml.ws.spi内のメソッド 修飾子と型 メソッド 説明 abstract Dispatch<Object>ServiceDelegate. createDispatch(QName portName, JAXBContext context, Service.Mode mode)JAXB生成オブジェクトで使用するDispatchインスタンスを作成します。abstract Dispatch<Object>ServiceDelegate. createDispatch(QName portName, JAXBContext context, Service.Mode mode, WebServiceFeature... features)JAXB生成オブジェクトで使用するDispatchインスタンスを作成します。abstract Dispatch<Object>ServiceDelegate. createDispatch(EndpointReference endpointReference, JAXBContext context, Service.Mode mode, WebServiceFeature... features)JAXB生成オブジェクトで使用するDispatchインスタンスを作成します。 
 -