|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ResponseContextException in org.apache.abdera.examples.appserver.custom |
---|
Methods in org.apache.abdera.examples.appserver.custom that throw ResponseContextException | |
---|---|
String |
SimpleAdapter.getAuthor(RequestContext request)
|
Uses of ResponseContextException in org.apache.abdera.examples.appserver.employee |
---|
Methods in org.apache.abdera.examples.appserver.employee that throw ResponseContextException | |
---|---|
void |
EmployeeCollectionAdapter.deleteEntry(String resourceName,
RequestContext request)
|
List<Person> |
EmployeeCollectionAdapter.getAuthors(Employee entry,
RequestContext request)
|
Employee |
EmployeeCollectionAdapter.getEntry(String resourceName,
RequestContext request)
|
Employee |
EmployeeCollectionAdapter.postEntry(String title,
IRI id,
String summary,
Date updated,
List<Person> authors,
Content content,
RequestContext request)
|
void |
EmployeeCollectionAdapter.putEntry(Employee employee,
String title,
Date updated,
List<Person> authors,
String summary,
Content content,
RequestContext request)
|
Uses of ResponseContextException in org.apache.abdera.protocol.server |
---|
Methods in org.apache.abdera.protocol.server that throw ResponseContextException | |
---|---|
void |
Transactional.start(RequestContext request)
Called by the provider before dispatching the request to the adapter |
Uses of ResponseContextException in org.apache.abdera.protocol.server.adapters.jcr |
---|
Methods in org.apache.abdera.protocol.server.adapters.jcr that throw ResponseContextException | |
---|---|
void |
JcrCollectionAdapter.deleteEntry(String resourceName,
RequestContext request)
|
String |
JcrCollectionAdapter.getAuthor(RequestContext request)
|
List<Person> |
JcrCollectionAdapter.getAuthors(javax.jcr.Node entry,
RequestContext request)
|
Object |
JcrCollectionAdapter.getContent(javax.jcr.Node entry,
RequestContext request)
|
static Calendar |
JcrCollectionAdapter.getDateOrNull(javax.jcr.Node node,
String propName)
|
Iterable<javax.jcr.Node> |
JcrCollectionAdapter.getEntries(RequestContext request)
|
javax.jcr.Node |
JcrCollectionAdapter.getEntry(String resourceName,
RequestContext request)
|
String |
JcrCollectionAdapter.getId(javax.jcr.Node entry)
|
String |
JcrCollectionAdapter.getMediaName(javax.jcr.Node entry)
|
InputStream |
JcrCollectionAdapter.getMediaStream(javax.jcr.Node entry)
|
String |
JcrCollectionAdapter.getName(javax.jcr.Node entry)
|
static String |
JcrCollectionAdapter.getStringOrNull(javax.jcr.Node node,
String propName)
|
Text |
JcrCollectionAdapter.getSummary(javax.jcr.Node entry,
RequestContext request)
|
String |
JcrCollectionAdapter.getTitle(javax.jcr.Node entry)
|
Date |
JcrCollectionAdapter.getUpdated(javax.jcr.Node entry)
|
boolean |
JcrCollectionAdapter.isMediaEntry(javax.jcr.Node entry)
|
protected javax.jcr.Node |
JcrCollectionAdapter.mapEntryToNode(javax.jcr.Node entry,
String title,
String summary,
Date updated,
List<Person> authors,
Content content,
javax.jcr.Session session)
|
javax.jcr.Node |
JcrCollectionAdapter.postEntry(String title,
IRI id,
String summary,
Date updated,
List<Person> authors,
Content content,
RequestContext request)
|
protected javax.jcr.Node |
JcrCollectionAdapter.postEntry(String title,
String summary,
Date updated,
List<Person> authors,
Content content,
javax.jcr.Session session,
javax.jcr.Node collectionNode,
String resourceName,
int num)
|
javax.jcr.Node |
JcrCollectionAdapter.postMedia(javax.activation.MimeType mimeType,
String slug,
InputStream inputStream,
RequestContext request)
|
void |
JcrCollectionAdapter.putEntry(javax.jcr.Node entry,
String title,
Date updated,
List<Person> authors,
String summary,
Content content,
RequestContext request)
|
void |
JcrCollectionAdapter.start(RequestContext request)
|
Uses of ResponseContextException in org.apache.abdera.protocol.server.impl |
---|
Methods in org.apache.abdera.protocol.server.impl with parameters of type ResponseContextException | |
---|---|
protected ResponseContext |
AbstractCollectionAdapter.createErrorResponse(ResponseContextException e)
Create a ResponseContext (or take it from the Exception) for an exception that occurred in the application. |
Methods in org.apache.abdera.protocol.server.impl that throw ResponseContextException | |
---|---|
protected void |
AbstractEntityCollectionAdapter.addContent(Entry e,
T doc,
RequestContext request)
Adds the atom:content element to an entry |
protected String |
AbstractEntityCollectionAdapter.addEntryDetails(RequestContext request,
Entry e,
IRI feedIri,
T entryObj)
Add the details to an entry |
protected void |
AbstractEntityCollectionAdapter.addFeedDetails(Feed feed,
RequestContext request)
Adds the selected entries to the Feed document. |
protected String |
AbstractEntityCollectionAdapter.addMediaContent(IRI feedIri,
Entry entry,
T entryObj,
RequestContext request)
Add media content details to a media-link entry |
protected ResponseContext |
AbstractCollectionAdapter.buildGetEntryResponse(RequestContext request,
Entry entry)
Creates the ResponseContext for a GET entry request. |
protected ResponseContext |
AbstractEntityCollectionAdapter.buildGetMediaResponse(String id,
T entryObj)
Creates a ResponseContext for a GET media request. |
protected ResponseContext |
AbstractCollectionAdapter.buildHeadEntryResponse(RequestContext request,
String id,
Date updated)
Creates the ResponseContext for a HEAD entry request. |
protected Feed |
AbstractCollectionAdapter.createFeedBase(RequestContext request)
Create the base feed for the requested collection. |
abstract void |
AbstractEntityCollectionAdapter.deleteEntry(String resourceName,
RequestContext request)
Delete an entry |
void |
AbstractEntityCollectionAdapter.deleteMedia(String resourceName,
RequestContext request)
Delete a media resource. |
abstract String |
AbstractCollectionAdapter.getAuthor(RequestContext request)
|
List<Person> |
AbstractEntityCollectionAdapter.getAuthors(T entry,
RequestContext request)
Get the authors for an entry. |
abstract Object |
AbstractEntityCollectionAdapter.getContent(T entry,
RequestContext request)
Get the content for the entry. |
abstract Iterable<T> |
AbstractEntityCollectionAdapter.getEntries(RequestContext request)
Get the listing of entries requested |
abstract T |
AbstractEntityCollectionAdapter.getEntry(String resourceName,
RequestContext request)
Get a specific entry |
protected Entry |
AbstractEntityCollectionAdapter.getEntryFromCollectionProvider(RequestContext request)
|
protected Entry |
AbstractCollectionAdapter.getEntryFromRequest(RequestContext request)
Retrieves the FOM Entry object from the request payload. |
abstract String |
AbstractEntityCollectionAdapter.getId(T entry)
Gets the UUID for the specified entry. |
protected String |
AbstractEntityCollectionAdapter.getLink(T entryObj,
IRI feedIri,
RequestContext request)
|
protected String |
AbstractEntityCollectionAdapter.getLink(T entryObj,
IRI feedIri,
RequestContext request,
boolean absolute)
|
String |
AbstractEntityCollectionAdapter.getMediaName(T entry)
Get the name of the media resource. |
InputStream |
AbstractEntityCollectionAdapter.getMediaStream(T entry)
Get an input stream for the media resource. |
abstract String |
AbstractEntityCollectionAdapter.getName(T entry)
Get the name of the entry resource (used to construct links) |
Text |
AbstractEntityCollectionAdapter.getSummary(T entry,
RequestContext request)
Get the summary of the entry. |
abstract String |
AbstractEntityCollectionAdapter.getTitle(T entry)
Get the title fo the entry |
abstract Date |
AbstractEntityCollectionAdapter.getUpdated(T entry)
Get the value to use in the atom:updated element |
boolean |
AbstractEntityCollectionAdapter.isMediaEntry(T entry)
True if this entry is a media-link entry. |
abstract T |
AbstractEntityCollectionAdapter.postEntry(String title,
IRI id,
String summary,
Date updated,
List<Person> authors,
Content content,
RequestContext request)
Create a new entry |
T |
AbstractEntityCollectionAdapter.postMedia(javax.activation.MimeType mimeType,
String slug,
InputStream inputStream,
RequestContext request)
Post a new media resource to the collection. |
abstract void |
AbstractEntityCollectionAdapter.putEntry(T entry,
String title,
Date updated,
List<Person> authors,
String summary,
Content content,
RequestContext request)
Update an entry. |
void |
AbstractEntityCollectionAdapter.putMedia(T entryObj,
javax.activation.MimeType contentType,
String slug,
InputStream inputStream,
RequestContext request)
Update a media resource. |
void |
AbstractCollectionAdapter.start(RequestContext request)
|
protected void |
AbstractProvider.transactionStart(Transactional transactional,
RequestContext request)
|
Uses of ResponseContextException in org.apache.abdera.protocol.server.provider.managed |
---|
Methods in org.apache.abdera.protocol.server.provider.managed that throw ResponseContextException | |
---|---|
String |
ManagedCollectionAdapter.getAuthor(RequestContext request)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |