| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Lookup
Constructs an XML source document that represents an individual ATOM entry. This entry contains metadata for the POC in addition to the URLs to the POC services that are associated with the URI.
Implementations of Lookup do not need to be threadsafe, because clients will call the LookupService to get new instances on a per-context basis. Cleanup and potential object pooling can be done via the implementation of the Disposable interface. Clients are required to call Disposable.dispose() for each instance of Lookup.
Example of a calling sequence
LookupService service = ...; Lookup lookup = service.newLookup(...); try { Source src = lookup.getSource(); ... } finally { lookup.dispose(); }
This interface is designed to be implemented by clients. |
Method Summary | |
---|---|
javax.xml.transform.Source | getSource()
Returns a new JAXP source object that can be used to generate a stream of XML events that represent an ATOM entry. |
Methods inherited from interface com.ibm.portal.Disposable |
---|
dispose |
Method Detail |
---|
javax.xml.transform.Source getSource() throws javax.xml.transform.TransformerException, org.xml.sax.SAXException, java.io.IOException
null
.
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |