|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object javax.xml.soap.SOAPElementFactory
javax.xml.soap.SOAPFactory
を使用します。
public class SOAPElementFactory
SOAPElementFactory
は、最終的に SOAP 部分で終了する XML フラグメントのファクトリです。これらのフラグメントは、SOAPHeader
や SOAPBody
、SOAPEnvelope
の子として挿入できます。
このファクトリを使用して作成された要素は、SOAP ヘッダードキュメント内部にある要素のプロパティーを保有していません。これらの要素は、挿入時に XML 文書ツリーにコピーされます。
SOAPFactory
メソッドの概要 | |
---|---|
SOAPElement |
create(Name name)
推奨されていません。 代わりに javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) を使用してください。 |
SOAPElement |
create(String localName)
推奨されていません。 代わりに javax.xml.soap.SOAPFactory.createElement(String localName) を使用してください。 |
SOAPElement |
create(String localName,
String prefix,
String uri)
推奨されていません。 代わりに javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) を使用してください。 |
static SOAPElementFactory |
newInstance()
推奨されていません。 SOAPElementFactory の新しいインスタンスを作成します。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
メソッドの詳細 |
---|
public SOAPElement create(Name name) throws SOAPException
Name
オブジェクトで初期化された SOAPElement
オブジェクトを作成します。
name
- 新規要素の XML 名を持つ Name
オブジェクト
SOAPElement
オブジェクト
SOAPException
- SOAPElement
オブジェクトの作成でエラーが発生した場合SOAPFactory.createElement(javax.xml.soap.Name)
,
SOAPFactory.createElement(javax.xml.namespace.QName)
public SOAPElement create(String localName) throws SOAPException
SOAPElement
オブジェクトを作成します。
localName
- 新規要素のローカル名を示す String
SOAPElement
オブジェクト
SOAPException
- SOAPElement
オブジェクトの作成でエラーが発生した場合SOAPFactory.createElement(java.lang.String)
public SOAPElement create(String localName, String prefix, String uri) throws SOAPException
SOAPElement
オブジェクトを作成します。
localName
- 新規要素のローカル名を示す String
prefix
- この SOAPElement
用の接頭辞uri
- 新規要素が属する名前空間の URI を指定する String
SOAPException
- SOAPElement
オブジェクトの作成でエラーが発生した場合SOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String)
public static SOAPElementFactory newInstance() throws SOAPException
SOAPElementFactory
の新しいインスタンスを作成します。
SOAPElementFactory
の新しいインスタンス
SOAPException
- デフォルトの SOAPElementFactory
の作成時にエラーが発生した場合
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。