|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.restlet.representation.Variant
org.restlet.representation.RepresentationInfo
org.restlet.representation.Representation
org.restlet.representation.CharacterRepresentation
org.restlet.representation.WriterRepresentation
org.restlet.ext.velocity.TemplateRepresentation
public class TemplateRepresentation
Velocity template representation. Useful for dynamic string-based representations.
| Field Summary |
|---|
| Fields inherited from class org.restlet.representation.Representation |
|---|
UNKNOWN_SIZE |
| Constructor Summary | |
|---|---|
TemplateRepresentation(org.restlet.representation.Representation templateRepresentation,
Map<String,Object> dataModel,
org.restlet.data.MediaType mediaType)
Constructor based on a Velocity 'encoded' representation. |
|
TemplateRepresentation(org.restlet.representation.Representation templateRepresentation,
org.restlet.data.MediaType mediaType)
Constructor based on a Velocity 'encoded' representation. |
|
TemplateRepresentation(String templateName,
Map<String,Object> dataModel,
org.restlet.data.MediaType mediaType)
Constructor. |
|
TemplateRepresentation(String templateName,
org.restlet.data.MediaType mediaType)
Constructor. |
|
TemplateRepresentation(Template template,
Map<String,Object> dataModel,
org.restlet.data.MediaType mediaType)
Constructor. |
|
TemplateRepresentation(Template template,
org.restlet.data.MediaType mediaType)
Constructor. |
|
| Method Summary | |
|---|---|
VelocityEngine |
getEngine()
Returns the Velocity engine. |
Template |
getTemplate()
Returns the Velocity template. |
void |
setDataModel(Map<String,Object> dataModel)
Sets the template's data model. |
void |
setDataModel(org.restlet.Request request,
org.restlet.Response response)
Sets the template's data model from a request/response pair. |
void |
setDataModel(org.restlet.util.Resolver<Object> resolver)
Sets the template's data model from a resolver. |
void |
write(Writer writer)
Writes the datum as a stream of characters. |
| Methods inherited from class org.restlet.representation.WriterRepresentation |
|---|
getReader |
| Methods inherited from class org.restlet.representation.CharacterRepresentation |
|---|
getChannel, getStream, write, write |
| Methods inherited from class org.restlet.representation.Representation |
|---|
append, exhaust, getAvailableSize, getDigest, getDisposition, getExpirationDate, getRange, getRegistration, getSize, getText, hasKnownSize, isAvailable, isEmpty, isSelectable, isTransient, release, setAvailable, setDigest, setDisposition, setExpirationDate, setListener, setRange, setSize, setTransient |
| Methods inherited from class org.restlet.representation.RepresentationInfo |
|---|
getModificationDate, getTag, setModificationDate, setTag |
| Methods inherited from class org.restlet.representation.Variant |
|---|
createClientInfo, equals, getCharacterSet, getEncodings, getLanguages, getLocationRef, getMediaType, includes, isCompatible, setCharacterSet, setEncodings, setLanguages, setLocationRef, setLocationRef, setMediaType, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public TemplateRepresentation(org.restlet.representation.Representation templateRepresentation,
Map<String,Object> dataModel,
org.restlet.data.MediaType mediaType)
throws ResourceNotFoundException,
ParseErrorException,
IOException
templateRepresentation - The representation to 'decode'.dataModel - The Velocity template's data model.mediaType - The representation's media type.
IOException
ParseErrorException
ResourceNotFoundException
public TemplateRepresentation(org.restlet.representation.Representation templateRepresentation,
org.restlet.data.MediaType mediaType)
throws ResourceNotFoundException,
ParseErrorException,
IOException
templateRepresentation - The representation to 'decode'.mediaType - The representation's media type.
IOException
ParseErrorException
ResourceNotFoundException
public TemplateRepresentation(String templateName,
Map<String,Object> dataModel,
org.restlet.data.MediaType mediaType)
templateName - The Velocity template's name. The actual template is retrieved
using the Velocity configuration.dataModel - The Velocity template's data model.mediaType - The representation's media type.
public TemplateRepresentation(String templateName,
org.restlet.data.MediaType mediaType)
templateName - The Velocity template's name. The full path is resolved by the
configuration.mediaType - The representation's media type.
public TemplateRepresentation(Template template,
Map<String,Object> dataModel,
org.restlet.data.MediaType mediaType)
template - The Velocity template.dataModel - The Velocity template's data model.mediaType - The representation's media type.
public TemplateRepresentation(Template template,
org.restlet.data.MediaType mediaType)
template - The Velocity template.mediaType - The representation's media type.| Method Detail |
|---|
public VelocityEngine getEngine()
public Template getTemplate()
public void setDataModel(Map<String,Object> dataModel)
dataModel - The template's data model.
public void setDataModel(org.restlet.Request request,
org.restlet.Response response)
request - The request where data are located.response - The response where data are located.Resolver,
Resolver.createResolver(Request, Response)public void setDataModel(org.restlet.util.Resolver<Object> resolver)
resolver - The resolver.
public void write(Writer writer)
throws IOException
write in class org.restlet.representation.Representationwriter - The writer to use when writing.
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||