blog-entry (xml)

Represents an entry in a web log (blog)
RESTful URLs: http://microformats.org/wiki/rest/urls
HTTP response codes as returned by the system:
200 - OK (request is ok and content returned)
201 - CREATED (request created new content, URL and id of content in the header)
204 - NO CONTENT (request is ok but no content to return)
400 - ERROR (general error in the request, probably invalid parameters or data)
401 - UNAUTHORIZED (user authentication required for this request)
403 - FORBIDDEN (authorization required, insufficient privileges, user is already authenticated)
404 - NOT FOUND (resource not found, URL is invalid in some way, id or action are invalid)
405 - METHOD NOT ALLOWED (the method is not supported for this entity type)
406 - NOT ACCEPTABLE (the data format requested is unavailable for this entity type)
500 - INTERNAL SERVER ERROR (general server failure, probably a failure in the provider)
501 - NOT IMPLEMENTED (indicates that a prefix is invalid)

Sample Entity URLs (_id=':ID:') [may not be valid]:

Entity Collection URL: GET /blog-entry (xml) (json)
Response Code Details: 200 plus data; 404 if not found, 406 if format unavailable
Create Entity URL: POST /blog-entry
Response Code Details: 201 plus id (EntityId); 400 if inputs invalid
Show Entity URL: GET /blog-entry/:ID: (xml) (json)
Response Code Details: 200 plus data; 404 if not found, 406 if format unavailable
Update Entity URL: PUT /blog-entry/:ID:
Response Code Details: 204; 400 if inputs invalid
Delete Entity URL: DELETE /blog-entry/:ID:
Response Code Details: 204; 404 if not found

Entity class : org.sakaiproject.blogwow.model.BlogWowEntry

Type :: bean
Name Type Status
1) blogorg.sakaiproject.blogwow.model.BlogWowBlogRead/Write
2) dateCreatedjava.util.DateRead/Write
3) dateModifiedjava.util.DateRead/Write
4) idstringRead/Write
5) ownerIdstringRead/Write
6) privacySettingstringRead/Write
Sets the visibility of this entry: private - visible to owner only, leader - visible to owner and group leader (instructor) of group related to the container blog, group - visible to group or site related to container blog, public - visible to anyone (anonymous users as well)
7) textstringRead/Write
8) titlestringRead/Write

Data and Request Handling

Output formats : xml, json
Input formats : html, xml, json
Access Provider available for request processing : EntityViewAccessProvider
Access Provider available for request processing : EntityViewAccessProvider

Capabilities

NameTypeDescription
1BlogEntryEntityProviderorg.sakaiproject.blogwow.logic.entity.BlogEntryEntityProvider
2CoreEntityProviderorg.sakaiproject.entitybroker.entityprovider.CoreEntityProvider
3EntityProviderorg.sakaiproject.entitybroker.entityprovider.EntityProvider
4ActionsExecutableorg.sakaiproject.entitybroker.entityprovider.capabilities.ActionsExecutable
5AutoRegisterEntityProviderorg.sakaiproject.entitybroker.entityprovider.capabilities.AutoRegisterEntityProvider
6CRUDableorg.sakaiproject.entitybroker.entityprovider.capabilities.CRUDable
7CollectionResolvableorg.sakaiproject.entitybroker.entityprovider.capabilities.CollectionResolvable
8Createableorg.sakaiproject.entitybroker.entityprovider.capabilities.CreateableWhen creating a new entry in a blog, you must supply the id of the blog to place the entry into in the 'blog.id' field in the entry
9Deleteableorg.sakaiproject.entitybroker.entityprovider.capabilities.Deleteable
10Describeableorg.sakaiproject.entitybroker.entityprovider.capabilities.Describeable
11Inputableorg.sakaiproject.entitybroker.entityprovider.capabilities.Inputable
12Outputableorg.sakaiproject.entitybroker.entityprovider.capabilities.Outputable
13RESTfulorg.sakaiproject.entitybroker.entityprovider.capabilities.RESTful
14Redirectableorg.sakaiproject.entitybroker.entityprovider.capabilities.Redirectable
15Resolvableorg.sakaiproject.entitybroker.entityprovider.capabilities.Resolvable
16Sampleableorg.sakaiproject.entitybroker.entityprovider.capabilities.Sampleable
17Saveableorg.sakaiproject.entitybroker.entityprovider.capabilities.Saveable
18Updateableorg.sakaiproject.entitybroker.entityprovider.capabilities.Updateable

REST:: 1.0.1 SVN: $Revision$ : $Date$