Package org.apache.abdera.protocol
Interface EntityProvider
-
- All Known Implementing Classes:
AbstractEntityProvider
@Deprecated public interface EntityProvider
Deprecated.Legacy AEM 6.x API.An EntityProvider is used to serialize entities using the StreamWriter interface. The EntityProvider interface can be implemented by applications to provide an efficient means of serializing non-FOM objects to Atom/XML.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetContentType()Deprecated.Return the mime content type of the serialized entityorg.apache.abdera.util.EntityTaggetEntityTag()Deprecated.Return the EntityTag of the entity,DategetLastModified()Deprecated.Return the Last-Modified date of the entitybooleanisRepeatable()Deprecated.True if the serialization is repeatable.voidwriteTo(org.apache.abdera.writer.StreamWriter sw)Deprecated.Write to the specified StreamWriter
-
-
-
Method Detail
-
writeTo
void writeTo(org.apache.abdera.writer.StreamWriter sw)
Deprecated.Write to the specified StreamWriter
-
isRepeatable
boolean isRepeatable()
Deprecated.True if the serialization is repeatable.
-
getContentType
String getContentType()
Deprecated.Return the mime content type of the serialized entity
-
getEntityTag
org.apache.abdera.util.EntityTag getEntityTag()
Deprecated.Return the EntityTag of the entity,
-
getLastModified
Date getLastModified()
Deprecated.Return the Last-Modified date of the entity
-
-