Package | Description |
---|---|
uws.job | |
uws.job.serializer | |
uws.service |
Modifier and Type | Method and Description |
---|---|
void |
UWSJob.serialize(javax.servlet.ServletOutputStream output,
java.lang.String[] attributes,
UWSSerializer serializer)
Serializes the specified attribute of this job in the given output stream
by using the given serializer.
|
void |
SerializableUWSObject.serialize(javax.servlet.ServletOutputStream output,
UWSSerializer serializer)
Serializes the whole object in the given output stream and thanks to the given serializer.
|
void |
SerializableUWSObject.serialize(javax.servlet.ServletOutputStream output,
UWSSerializer serializer,
JobOwner owner)
Serializes the while object in the given output stream,
considering the given owner ID and thanks to the given serializer.
|
void |
JobList.serialize(javax.servlet.ServletOutputStream output,
UWSSerializer serializer,
JobOwner owner,
JobListRefiner listRefiner)
Serializes the while object in the given output stream,
considering the given owner, the given job filters and thanks to the
given serializer.
|
java.lang.String |
UWSJob.serialize(java.lang.String[] attributes,
UWSSerializer serializer)
Serializes the specified attribute of this job by using the given
serializer.
|
java.lang.String |
SerializableUWSObject.serialize(UWSSerializer serializer)
Serializes the whole object thanks to the given serializer.
|
abstract java.lang.String |
SerializableUWSObject.serialize(UWSSerializer serializer,
JobOwner owner)
Serializes the whole object considering the given owner (supposed to be the current user)
and thanks to the given serializer.
|
java.lang.String |
ErrorSummary.serialize(UWSSerializer serializer,
JobOwner owner) |
java.lang.String |
Result.serialize(UWSSerializer serializer,
JobOwner owner) |
java.lang.String |
JobList.serialize(UWSSerializer serializer,
JobOwner user) |
java.lang.String |
UWSJob.serialize(UWSSerializer serializer,
JobOwner user) |
Modifier and Type | Class and Description |
---|---|
class |
JSONSerializer
Lets serializing any UWS resource in JSON.
|
class |
XMLSerializer
Lets serializing any UWS resource in XML.
|
Modifier and Type | Field and Description |
---|---|
protected UWSSerializer |
UWSService.choosenSerializer
The serializer chosen during the last call of
UWSService.executeRequest(HttpServletRequest, HttpServletResponse) . |
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<java.lang.String,UWSSerializer> |
UWSService.serializers
List of available serializers.
|
Modifier and Type | Method and Description |
---|---|
UWSSerializer |
UWSService.getChoosenSerializer()
Gets the serializer choosen during the last call of
UWSService.getSerializer(String) . |
UWSSerializer |
UWSServlet.getSerializer(java.lang.String mimeTypes)
Gets the serializer whose the MIME type is the same as the given one.
|
UWSSerializer |
UWSService.getSerializer(java.lang.String mimeTypes) |
UWSSerializer |
UWS.getSerializer(java.lang.String mimeTypes)
Gets the serializer whose the MIME type is the same as the given one.
|
UWSSerializer |
UWSServlet.removeSerializer(java.lang.String mimeType)
Removes the serializer whose the MIME type is the same as the given one.
|
UWSSerializer |
UWSService.removeSerializer(java.lang.String mimeType)
Removes the serializer whose the MIME type is the same as the given one.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<UWSSerializer> |
UWSService.getSerializers()
Gets an iterator of the list of all serializers available in this UWS.
|
Modifier and Type | Method and Description |
---|---|
boolean |
UWSServlet.addSerializer(UWSSerializer serializer)
Adds a serializer to this UWS
|
boolean |
UWSService.addSerializer(UWSSerializer serializer)
Adds a serializer to this UWS
|