|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
org.apache.soap.rpc.SOAPContext
SOAP context for a message. Encapsulates:
Field Summary | |
protected java.util.Hashtable |
bag |
protected java.lang.String |
currentId |
protected java.util.Hashtable |
deserializedMultiRef |
protected java.lang.ClassLoader |
loader |
protected java.util.Vector |
multiRef |
protected MimeMultipart |
parts |
protected boolean |
rootPartSet This flag indicates if setRootPart() was called, so we can distinguish default root part resolution from deliberate root part indication. |
Constructor Summary | |
SOAPContext() Constructor. |
Method Summary | |
void |
addBodyPart(MimeBodyPart part) Adds a Part. |
void |
addBodyPart(MimeBodyPart part, int index) Adds a MimeBodyPart at position index . |
void |
addDeserializedMultiRef(java.lang.String id, java.lang.Object o) Adds the multiRef deserialized for a particular id. |
int |
addMultiRef(java.lang.Object obj, Serializer ser) Adds a multiRef element. |
MimeBodyPart |
findBodyPart(java.lang.String uri) Find the Mimepart referred to by the given URI. |
MimeBodyPart |
findPartByLocation(java.lang.String uri) Find the Mimepart referred to by the given URI. |
java.lang.String |
getBaseURI() Determine the document's base URI, according to the following scheme: The Content-Location header of the root (SOAP) part. |
MimeBodyPart |
getBodyPart(int index) Get the specified Part. |
MimeBodyPart |
getBodyPart(java.lang.String CID) Get the Mimepart referred to by the given ContentID (CID). |
java.lang.ClassLoader |
getClassLoader() |
java.lang.String |
getContentType() Return the content-type |
int |
getCount() Return the number of enclosed BodyPart objects. |
java.lang.String |
getCurrentId() Gets the id attribute for the element currently being deserialized. |
java.lang.Object |
getDeserializedMultiRef(java.lang.String id) Gets the multiRef deserialized for a particular id. |
int |
getMultiRefCount() Gets the number of multiRefs. |
java.lang.Object |
getMultiRefObject(int id) Gets the multiRef object for a particular id. |
Serializer |
getMultiRefSerializer(int id) Gets the multiRef serializer for a particular id. |
java.lang.Object |
getProperty(java.lang.String name) Look for something in the hold-all 'bag' |
java.util.Enumeration |
getPropertyNames() Return the entire list of 'names' in the hold-all 'bag' |
MimeBodyPart |
getRootPart() Find the root part. |
boolean |
isRootPartSet() Returns true is setRootPart() has been called. |
java.lang.Class |
loadClass(java.lang.String className) |
void |
readMultipart(DataSource ds) Initialise MIME multipart object from a data source. |
void |
removeBodyPart(MimeBodyPart part) Remove a body part. |
java.lang.Object |
removeProperty(java.lang.String name) Remove something from the hold-all 'bag' |
void |
setClassLoader(java.lang.ClassLoader cl) |
void |
setCurrentId(java.lang.String id) Sets the id attribute for the element currently being deserialized. |
void |
setProperty(java.lang.String name, java.lang.Object value) Store something in the hold-all 'bag' |
void |
setRootPart(byte[] b, java.lang.String contentType) Set the root part to a provided string (usually the SOAP envelope). |
void |
setRootPart(MimeBodyPart part) Adds the root BodyPart. |
void |
setRootPart(java.lang.String s, java.lang.String contentType) Set the root part to a provided string (usually the SOAP envelope). |
void |
setSubType(java.lang.String subtype) Set the MultiPart Mime subtype. |
java.lang.String |
toString() String representation for debug purposes. |
void |
writeTo(java.io.OutputStream os) Encode the root part or multipart and write to an OutputStream. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
protected MimeMultipart parts
protected java.util.Hashtable bag
protected java.lang.ClassLoader loader
protected java.util.Vector multiRef
protected java.util.Hashtable deserializedMultiRef
protected java.lang.String currentId
protected boolean rootPartSet
Constructor Detail |
public SOAPContext()
Method Detail |
public void readMultipart(DataSource ds) throws MessagingException
ds
- a DataSource object to read fromMessagingException
public MimeBodyPart getBodyPart(int index)
index
- the index of the desired Partpublic MimeBodyPart getBodyPart(java.lang.String CID)
CID
- the ContentID of the desired partpublic MimeBodyPart findBodyPart(java.lang.String uri)
Note: relative URIs not entirely implemented yet.
uri
- the URIpublic java.lang.String getBaseURI()
public MimeBodyPart findPartByLocation(java.lang.String uri)
Note: relative URIs not entirely implemented yet. We also can't pick up the base URI from the multipart (transport) headers yet, only from the root (SOAP) part.
uri
- the URIpublic void addBodyPart(MimeBodyPart part) throws MessagingException
part
- The Part to be appendedMessagingException
IllegalWriteException
- if the underlying implementation does not support modification of existing valuespublic void addBodyPart(MimeBodyPart part, int index) throws MessagingException, java.lang.IllegalArgumentException
index
. If index
is not the last one in the list, the subsequent parts are shifted up. If index
is larger than the number of parts present, the MimeBodyPart is appended to the end.part
- The BodyPart to be insertedindex
- Location where to insert the partMessagingException
IllegalWriteException
- if the underlying implementation does not support modification of existing valuesjava.lang.IllegalArgumentException
- if the part cannot be made into an attachment for some reasonpublic void removeBodyPart(MimeBodyPart part) throws MessagingException
MessagingException
public void setRootPart(MimeBodyPart part) throws MessagingException
Calling this method twice will replace the previous root part with the new one.
part
- The BodyPart to be insertedMessagingException
public void setRootPart(java.lang.String s, java.lang.String contentType) throws MessagingException, java.io.IOException
s
- The String to be insertedcontentType
- the Content-Type of the root partMessagingException
java.io.IOException
public void setRootPart(byte[] b, java.lang.String contentType) throws MessagingException
b
- The String to be insertedcontentType
- the Content-Type of the root partMessagingException
public MimeBodyPart getRootPart() throws MessagingException
MessagingException
public void setSubType(java.lang.String subtype) throws MessagingException
subtype
- SubtypeMessagingException
public boolean isRootPartSet()
public int getCount() throws MessagingException
MessagingException
public java.lang.String getContentType() throws MessagingException
MessagingException
public void writeTo(java.io.OutputStream os) throws java.io.IOException, MessagingException
os
- stream to write tojava.io.IOException
MessagingException
public void setProperty(java.lang.String name, java.lang.Object value)
public java.lang.Object getProperty(java.lang.String name)
public java.lang.Object removeProperty(java.lang.String name)
public java.util.Enumeration getPropertyNames()
public void setClassLoader(java.lang.ClassLoader cl)
public java.lang.ClassLoader getClassLoader()
public java.lang.Class loadClass(java.lang.String className) throws java.lang.ClassNotFoundException
java.lang.ClassNotFoundException
public java.lang.String getCurrentId()
public void setCurrentId(java.lang.String id)
id
- The current id.public int addMultiRef(java.lang.Object obj, Serializer ser)
obj
- The object for which a multiRef is desired.ser
- The serializer with which to serialize the object.public java.lang.Object getMultiRefObject(int id)
id
- The id.public Serializer getMultiRefSerializer(int id)
id
- The id.public int getMultiRefCount()
public void addDeserializedMultiRef(java.lang.String id, java.lang.Object o)
id
- The element id, as referred to by an href.o
- The deserialized object.public java.lang.Object getDeserializedMultiRef(java.lang.String id)
id
- The id, as referred to by an href.public java.lang.String toString()
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |