public abstract class SAAJMetaFactory extends Object
newInstance
メソッドは、このクラスのインスタンスに従い、実際のオブジェクトを作成します。SAAJ 1.2 に存在した newInstance()
メソッド (SOAPFactory、MessageFactory 内) の実装は更新され、SAAJ 1.2 で定義されている検索が Factory 実装クラス名を検索できないときに、SAAJMetaFactory に委譲するようになりました。
SAAJMetaFactory はサービスプロバイダのインタフェースです。このクラスの public メソッドはありません。
修飾子 | コンストラクタと説明 |
---|---|
protected |
SAAJMetaFactory() |
修飾子と型 | メソッドと説明 |
---|---|
protected abstract MessageFactory |
newMessageFactory(String protocol)
指定された
String プロトコルのための MessageFactory オブジェクトを生成します。 |
protected abstract SOAPFactory |
newSOAPFactory(String protocol)
指定された
String プロトコルのための SOAPFactory オブジェクトを生成します。 |
protected abstract MessageFactory newMessageFactory(String protocol) throws SOAPException
String
プロトコルのための MessageFactory
オブジェクトを生成します。protocol
- プロトコルを示す String
SOAPException
- MessageFactory の作成でエラーが発生した場合SOAPConstants.SOAP_1_1_PROTOCOL
, SOAPConstants.SOAP_1_2_PROTOCOL
, SOAPConstants.DYNAMIC_SOAP_PROTOCOL
protected abstract SOAPFactory newSOAPFactory(String protocol) throws SOAPException
String
プロトコルのための SOAPFactory
オブジェクトを生成します。protocol
- プロトコルを示す String
SOAPException
- SOAPFactory の作成でエラーが発生した場合SOAPConstants.SOAP_1_1_PROTOCOL
, SOAPConstants.SOAP_1_2_PROTOCOL
, SOAPConstants.DYNAMIC_SOAP_PROTOCOL
バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.