|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.sun.jersey.server.impl.template.TemplateFactory
public final class TemplateFactory
Constructor Summary | |
---|---|
TemplateFactory(ProviderServices providerServices)
|
Method Summary | |
---|---|
ResolvedViewable |
resolveViewable(Viewable v)
Resolve a Viewable . |
ResolvedViewable |
resolveViewable(Viewable v,
Class<?> resolvingClass)
Resolve a Viewable given a resolving class. |
ResolvedViewable |
resolveViewable(Viewable v,
UriInfo ui)
Resolve a Viewable . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TemplateFactory(ProviderServices providerServices)
Method Detail |
---|
public ResolvedViewable resolveViewable(Viewable v)
TemplateContext
Viewable
.
If the template name of the viewable is not absolute then the resolving
class of the viewable is utilized to resolve the relative template name
into an absolute template name.
If the resolving class is not set (a null value) then the class of the
model is utilized as the resolving class.
If the model is not set (a null value) then a TemplateContextException
is thrown.
resolveViewable
in interface TemplateContext
v
- the viewable
public ResolvedViewable resolveViewable(Viewable v, UriInfo ui)
TemplateContext
Viewable
.
If the template name of the viewable is not absolute then the resolving
class of the viewable is utilized to resolve the relative template name
into an absolute template name.
If the resolving class is not set (a null value) then the class of the
last matching resource obtained from
UriInfo.getMatchedResources()
, namely
the class obtained from the expression
uriInfo.getMatchedResources().get(0).getClass()
, is utilized
as the resolving class.
If there are no matching resoruces then a TemplateContextException
is thrown.
resolveViewable
in interface TemplateContext
v
- the viewable
public ResolvedViewable resolveViewable(Viewable v, Class<?> resolvingClass)
TemplateContext
Viewable
given a resolving class.
If the template name of the viewable is not absolute then the resolving
class of the viewable is utilized to resolve the relative template name
into an absolute template name.
If the resolving class is not set (a null value) then the class of the
resolvingClass
parameter is utilized as the resolving class.
If the resolvingClass
parameter is null then a
TemplateContextException
is thrown.
resolveViewable
in interface TemplateContext
v
- the viewable.resolvingClass
- the resolving class to use if the resolving
class of the viewable is not set.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |