org.apache.cxf.databinding
Interface DataWriter<T>
- Type Parameters:
T - The type of sink. Each data binding defines the set of sink types that it supports.
- All Superinterfaces:
- BaseDataWriter
public interface DataWriter<T>
- extends BaseDataWriter
The 'write' side of the data binding abstraction of CXF. A DataWriter<T> serializes
objects to a 'sink' of type T.
|
Field Summary |
static java.lang.String |
ENDPOINT
|
|
Method Summary |
void |
write(java.lang.Object obj,
MessagePartInfo part,
T output)
Write an object to an output sink, including extra processing based on the WSDL
service model for a particular message part. |
void |
write(java.lang.Object obj,
T output)
Write an object to an output sink. |
ENDPOINT
static final java.lang.String ENDPOINT
write
void write(java.lang.Object obj,
T output)
- Write an object to an output sink.
- Parameters:
obj - the object to write.output - the output sink.
write
void write(java.lang.Object obj,
MessagePartInfo part,
T output)
- Write an object to an output sink, including extra processing based on the WSDL
service model for a particular message part.
- Parameters:
obj - The object to write.part - the message part.output - the output sink.
Apache CXF