|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use ElementSupport | |
|---|---|
| com.uwyn.rife.authentication.elements | Provides elements for authentication and logout, using the variety of backend stores available. |
| com.uwyn.rife.cmf.dam | Provides classes and interfaces for the database access management of the content management framework. |
| com.uwyn.rife.cmf.dam.contentmanagers | Provides managers classes for content information support. |
| com.uwyn.rife.cmf.dam.contentstores | Provides managers classes for content data support. |
| com.uwyn.rife.cmf.elements | Provides an element that serves streaming content data straight from the content management framework. |
| com.uwyn.rife.engine | Provides classes, interfaces and elements for the web application engine. |
| com.uwyn.rife.engine.elements | Provides elements wigh common features that are useful in many web applications. |
| com.uwyn.rife.feed | Provides classes and interfaces for the content syndication framework. |
| com.uwyn.rife.feed.elements | Provides elements for the integration of content syndication into a site. |
| com.uwyn.rife.site | Provides classes and interfaces that provide useful features during the creation of a website. |
| Uses of ElementSupport in com.uwyn.rife.authentication.elements |
|---|
| Subclasses of ElementSupport in com.uwyn.rife.authentication.elements | |
|---|---|
class |
AbstractLogout
|
class |
AbstractLogoutPassthrough
|
class |
AbstractLogoutTemplate
|
class |
Authenticated
Requires that the user have a valid authentication session before access to a child element is allowed. |
class |
DatabaseAuthenticated
Sets up the standard Authenticated element for managers that
work with a database back-end. |
class |
DatabaseLogoutPassthrough
Sets up the standard SimpleLogoutPassthrough element for managers
that work with a database back-end. |
class |
DatabaseLogoutTemplate
Sets up the standard SimpleLogoutTemplate element for managers
that work with a database back-end. |
class |
FactoryPropertyAuthenticated
|
class |
Identified
|
class |
MemoryAuthenticated
Sets up the standard Authenticated element for managers that
work with an in-memory back-end. |
class |
MemoryLogoutPassthrough
Sets up the standard SimpleLogoutPassthrough element for managers
that work with an in-memory back-end. |
class |
MemoryLogoutTemplate
Sets up the standard SimpleLogoutTemplate element for managers that
work with an in-memory back-end. |
class |
MixedAuthenticated
Sets up the standard Authenticated element with credentials and
remember-me managers for database storage, but the session managers for
memory storage. |
class |
PurgingDatabaseAuthenticated
Sets up the standard Authenticated element for managers that
work with a database back-end and enables automatic in-process purging. |
class |
PurgingMemoryAuthenticated
Sets up the standard Authenticated element for managers that
work with an in-memory back-end and enables automatic in-process purging. |
class |
PurgingMixedAuthenticated
Sets up the standard Authenticated element with credentials and
remember-me managers for database storage, but the session managers for
memory storage and enables automatic in-process purging. |
class |
RoleUserAuthenticated
Extends the generic Authenticated element with support for a role
property that will be used together with RoleUserCredentials
credentials to only allow people with that role to access the child page. |
class |
SimpleLogoutPassthrough
|
class |
SimpleLogoutTemplate
|
| Uses of ElementSupport in com.uwyn.rife.cmf.dam |
|---|
| Methods in com.uwyn.rife.cmf.dam with parameters of type ElementSupport | |
|---|---|
String |
ContentStore.getContentForHtml(int id,
ContentInfo info,
ElementSupport element,
String serveContentExitName)
Retrieves a content data representation for use in html. |
String |
ContentManager.getContentForHtml(String location,
ElementSupport element,
String serveContentExitName)
Retrieves a content representation for use in html. |
void |
ContentStore.serveContentData(ElementSupport element,
int id)
Serves content data for a certain content id through the provided element. |
void |
ContentManager.serveContentData(ElementSupport element,
String location)
Serves content data from a certain location through the provided element. |
| Uses of ElementSupport in com.uwyn.rife.cmf.dam.contentmanagers |
|---|
| Methods in com.uwyn.rife.cmf.dam.contentmanagers with parameters of type ElementSupport | |
|---|---|
protected String |
DatabaseContent._getContentForHtml(String location,
ElementSupport element,
String serveContentExitName)
|
protected void |
DatabaseContent._serveContentData(ElementSupport element,
String location)
|
| Uses of ElementSupport in com.uwyn.rife.cmf.dam.contentstores |
|---|
| Methods in com.uwyn.rife.cmf.dam.contentstores with parameters of type ElementSupport | |
|---|---|
protected void |
DatabaseRawStore._serveContentData(Select retrieveContentChunks,
ElementSupport element,
int id)
|
protected void |
DatabaseContentStore._serveContentData(Select retrieveContent,
ElementSupport element,
int id)
|
String |
DatabaseTextStore.getContentForHtml(int id,
ContentInfo info,
ElementSupport element,
String serveContentExitName)
|
String |
DatabaseRawStore.getContentForHtml(int id,
ContentInfo info,
ElementSupport element,
String serveContentExitName)
|
String |
DatabaseImageStore.getContentForHtml(int id,
ContentInfo info,
ElementSupport element,
String serveContentExitName)
|
| Uses of ElementSupport in com.uwyn.rife.cmf.elements |
|---|
| Subclasses of ElementSupport in com.uwyn.rife.cmf.elements | |
|---|---|
class |
ServeContent
|
| Uses of ElementSupport in com.uwyn.rife.engine |
|---|
| Subclasses of ElementSupport in com.uwyn.rife.engine | |
|---|---|
class |
Element
This is a convenience abstract class that implements the ElementAware interface and extends the ElementSupport class. |
class |
ElementScripted
The ElementScripted class provides a bridge between
scripting engines and the element backend. |
| Methods in com.uwyn.rife.engine that return ElementSupport | |
|---|---|
static ElementSupport |
ElementContext.getActiveElementSupport()
|
ElementSupport |
EngineContinuationConfigRuntime.getAssociatedContinuableObject(Object executingInstance)
|
ElementSupport |
ElementSupport.getEmbeddingElement()
Retrieves the element that is embedding the current element. |
ElementSupport |
AbstractResponse.getLastElement()
Retrieves the last element that has been processed with this response. |
| Methods in com.uwyn.rife.engine with parameters of type ElementSupport | |
|---|---|
boolean |
EngineContinuationConfigRuntime.cloneContinuations(ElementSupport executingContinuable)
|
ContinuationManager |
EngineContinuationConfigRuntime.getContinuationManager(ElementSupport executingContinuable)
|
void |
Element.noticeElement(ElementSupport element)
|
void |
ElementAware.noticeElement(ElementSupport elementSupport)
This method is called immediately after the instantiation of the element to provide the support object that allows the element to function in the current context. |
void |
AbstractResponse.setLastElement(ElementSupport element)
|
void |
Response.setLastElement(ElementSupport element)
Sets the latest target element of this response. |
void |
ElementService.setRequestElement(ElementSupport elementSupport)
This method will be called by the web service back-end integration element before invoking the actual web service. |
| Uses of ElementSupport in com.uwyn.rife.engine.elements |
|---|
| Subclasses of ElementSupport in com.uwyn.rife.engine.elements | |
|---|---|
class |
Defer
|
class |
DwrService
|
class |
PrintTemplate
|
class |
Redirect
|
class |
SoapXFire
|
class |
Uncached
|
class |
WebservicesHessian
|
| Uses of ElementSupport in com.uwyn.rife.feed |
|---|
| Methods in com.uwyn.rife.feed with parameters of type ElementSupport | |
|---|---|
Feed |
EntryProvider.getFeedDescriptor(ElementSupport element)
Get a bean describing the Feed being outputted. |
void |
EntryProvider.provideEntries(ElementSupport element,
EntryProcessor processor)
Provide entries using EntryProcessor.setEntry(Entry) to set
each entry to the feed |
| Uses of ElementSupport in com.uwyn.rife.feed.elements |
|---|
| Subclasses of ElementSupport in com.uwyn.rife.feed.elements | |
|---|---|
class |
FeedProvider
An Element that uses an EntryProvider to print
out a feed. |
| Uses of ElementSupport in com.uwyn.rife.site |
|---|
| Methods in com.uwyn.rife.site with parameters of type ElementSupport | |
|---|---|
static void |
PagedNavigation.generateNavigation(ElementSupport element,
Template template,
long count,
int limit,
long offset,
int span)
Generates the paged navigation for the given element, template and range configuration. |
static void |
PagedNavigation.generateNavigation(ElementSupport element,
Template template,
long count,
int limit,
long offset,
int span,
String exit,
String output)
Generates the paged navigation for the given element, template and range configuration. |
static void |
PagedNavigation.generateNavigation(ElementSupport element,
Template template,
long count,
int limit,
long offset,
int span,
String exit,
String output,
String pathInfo)
Generates the paged navigation for the given element, template and range configuration. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||