Riferimenti per l'interfaccia org.jaebi.server.service.xml.JAXBMarshallerWrapper

Diagramma delle classi per org.jaebi.server.service.xml.JAXBMarshallerWrapper

Inheritance graph
[legenda]
Lista di tutti i membri.

Descrizione Dettagliata

Interfaccia da implementare per agevolare le operaziodi Marshalling ed Unmarshalling di un XML Bindato con JAXB (JAva Xml Binding).

Autore:
detro

Definizione alla linea 25 del file JAXBMarshallerWrapper.java.

Membri pubblici

String marshall (Object marshallable) throws JAXBMarshallerWrapperMarshallException
 Marshall di un XML Bindato con JAXB.
Object unmarshall (String xmlString) throws JAXBMarshallerWrapperUnmarshallException
 Unmarshall di una Stringa in un XML JAXB Object.
Object unmarshall (URL url) throws JAXBMarshallerWrapperUnmarshallException
 Unmarshall di un URL che si riferisce ad un XML in un XML JAXB Object.
Object unmarshall (File file) throws JAXBMarshallerWrapperUnmarshallException
 Unmarshall di un File XML in un XML JAXB Object.
Object unmarshall (InputStream inputStream) throws JAXBMarshallerWrapperUnmarshallException
 Unmarshall di un InputStream XML in un XML JAXB Object.
Object unmarshall (Source source) throws JAXBMarshallerWrapperUnmarshallException
void setFormattedMarshalling (boolean value) throws JAXBMarshallerWrapperMarshallException
 Attiva/Disattiva il Marshalling "formattato", cioe' con Indentazione dell'XML.
boolean isFormattedMarshalling ()
 Verifica se e' attivo il Marshalling formattato.


Documentazione delle funzioni membro

boolean org.jaebi.server.service.xml.JAXBMarshallerWrapper.isFormattedMarshalling  ) 
 

Verifica se e' attivo il Marshalling formattato.

Restituisce:
"true" se attivo, "false" altrimenti

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

String org.jaebi.server.service.xml.JAXBMarshallerWrapper.marshall Object  marshallable  )  throws JAXBMarshallerWrapperMarshallException
 

Marshall di un XML Bindato con JAXB.

Mashallare significa, in sostanza, "trasformare in Stringa", serializzando quindi l'Oggetto XML in una "forma" piu' comune e trasportabile.

Parametri:
marshallable Object XML marshallabile
Restituisce:
Stringa XML
Eccezioni:
JAXBMarshallerWrapperUnmarshallException 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Referenziato da org.jaebi.server.service.ServiceMediatorImpl.executeServiceToString(), org.jaebi.test.server.xml.MainTestJAXBXresponse.main(), org.jaebi.test.server.xml.MainTestJAXBXrequest.main(), org.jaebi.test.server.service.MainTestServicePackage.main(), org.jaebi.test.server.service.MainTestServiceMediatorImpl.main(), e org.jaebi.server.service.XRequestCommand.toString().

void org.jaebi.server.service.xml.JAXBMarshallerWrapper.setFormattedMarshalling boolean  value  )  throws JAXBMarshallerWrapperMarshallException
 

Attiva/Disattiva il Marshalling "formattato", cioe' con Indentazione dell'XML.

Parametri:
value "true" per attivare, "false" per disattivare
Eccezioni:
JAXBMarshallerWrapperUnmarshallException 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Referenziato da org.jaebi.test.server.xml.MainTestJAXBXresponse.main(), org.jaebi.test.server.xml.MainTestJAXBXrequest.main(), org.jaebi.test.server.service.MainTestServicePackage.main(), org.jaebi.test.server.service.MainTestServiceMediatorImpl.main(), e org.jaebi.server.service.XRequestCommand.toString().

Object org.jaebi.server.service.xml.JAXBMarshallerWrapper.unmarshall Source  source  )  throws JAXBMarshallerWrapperUnmarshallException
 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Object org.jaebi.server.service.xml.JAXBMarshallerWrapper.unmarshall InputStream  inputStream  )  throws JAXBMarshallerWrapperUnmarshallException
 

Unmarshall di un InputStream XML in un XML JAXB Object.

Converte in una struttura di oggetti JAXB un InputStream contenente XML.

Parametri:
inputStream InputStream contenente XML
Restituisce:
Object JAXB
Eccezioni:
JAXBMarshallerWrapperUnmarshallException 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Object org.jaebi.server.service.xml.JAXBMarshallerWrapper.unmarshall File  file  )  throws JAXBMarshallerWrapperUnmarshallException
 

Unmarshall di un File XML in un XML JAXB Object.

Converte in una struttura di oggetti JAXB un File contenente XML.

Parametri:
file File contenente XML
Restituisce:
Object JAXB
Eccezioni:
JAXBMarshallerWrapperUnmarshallException 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Object org.jaebi.server.service.xml.JAXBMarshallerWrapper.unmarshall URL  url  )  throws JAXBMarshallerWrapperUnmarshallException
 

Unmarshall di un URL che si riferisce ad un XML in un XML JAXB Object.

Converte in una struttura di oggetti JAXB un URL contenente XML.

Parametri:
url URL contenente XML
Restituisce:
Object JAXB
Eccezioni:
JAXBMarshallerWrapperUnmarshallException 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Object org.jaebi.server.service.xml.JAXBMarshallerWrapper.unmarshall String  xmlString  )  throws JAXBMarshallerWrapperUnmarshallException
 

Unmarshall di una Stringa in un XML JAXB Object.

Converte in una struttura di oggetti JAXB una Stringa contenente XML.

Parametri:
xmlString Stringa contenente XML
Restituisce:
Object JAXB
Eccezioni:
JAXBMarshallerWrapperUnmarshallException 

Implementato in org.jaebi.server.service.xml.JAXBMarshallerWrapperImpl.

Referenziato da org.jaebi.server.service.ServiceMediatorImpl.executeService(), org.jaebi.test.server.xml.MainTestJAXBXresponse.main(), org.jaebi.test.server.xml.MainTestJAXBXrequest.main(), org.jaebi.test.server.service.MainTestServicePackage.main(), e org.jaebi.test.server.service.MainTestServiceMediatorImpl.main().


La documentazione per questa interfaccia è stata generata a partire dal seguente file:
Generato il Mon Jun 27 22:50:53 2005 per JAEBI - JAva Enterprice BackEnd Interfacement da  doxygen 1.4.3