Uses of Class
org.wso2.carbon.registry.core.ResourceImpl

Packages that use ResourceImpl
org.wso2.carbon.registry.app   
org.wso2.carbon.registry.core   
org.wso2.carbon.registry.core.jdbc.dao   
org.wso2.carbon.registry.core.servlet   
org.wso2.carbon.registry.core.utils   
 

Uses of ResourceImpl in org.wso2.carbon.registry.app
 

Subclasses of ResourceImpl in org.wso2.carbon.registry.app
 class RemoteResourceImpl
          Implementation of a resource, to be used by the remote registry.
 

Uses of ResourceImpl in org.wso2.carbon.registry.core
 

Subclasses of ResourceImpl in org.wso2.carbon.registry.core
 class CollectionImpl
          The default registry implementation of the Collection interface.
 class CollectionVersionImpl
          Implementation of CollectionImpl, Instance of this class is returned when requested for an early version of some collection.
 class Comment
          Represents comments and its meta data.
 

Methods in org.wso2.carbon.registry.core that return ResourceImpl
protected  ResourceImpl ResourceImpl.fillResourceCopy(ResourceImpl resource)
          Fill the resource.
 ResourceImpl CollectionImpl.getShallowCopy()
          Method to return a shallow copy of a collection.
 ResourceImpl ResourceImpl.getShallowCopy()
          Create a shallow copy of the resource.
 

Methods in org.wso2.carbon.registry.core with parameters of type ResourceImpl
protected  ResourceImpl ResourceImpl.fillResourceCopy(ResourceImpl resource)
          Fill the resource.
 

Uses of ResourceImpl in org.wso2.carbon.registry.core.jdbc.dao
 

Methods in org.wso2.carbon.registry.core.jdbc.dao that return ResourceImpl
 ResourceImpl ResourceDAO.get(ResourceIDImpl resourceID)
          Returns the resource in the given path filled with meta-data and access to the content.
 ResourceImpl ResourceVersionDAO.get(ResourceIDImpl resourceID, long snapshotID)
          Returns the resource in the given path filled with meta-data and access to the content.
 ResourceImpl ResourceDAO.get(String path)
          Returns the resource in the given path filled with meta-data and access to the content.
 ResourceImpl ResourceDAO.getResourceMetaData(ResourceIDImpl resourceID)
          Method to return the resource meta data (excluding properties, content and children)
 ResourceImpl ResourceDAO.getResourceMetaData(String path)
          Method to return the resource meta data (excluding properties, content and children)
 ResourceImpl TagsDAO.getResourceWithMinimumData(String path)
          Gets the resource with sufficient data to differentiate it from another resource.
 ResourceImpl TagsVersionDAO.getResourceWithMinimumData(String path)
          Gets the resource with sufficient data to differentiate it from another resource.
 ResourceImpl RatingsDAO.getResourceWithMinimumData(String path)
          Gets the resource with sufficient data to differentiate it from another resource.
 ResourceImpl RatingsVersionDAO.getResourceWithMinimumData(String path)
          Gets the resource with sufficient data to differentiate it from another resource.
 ResourceImpl CommentsVersionDAO.getResourceWithMinimumData(String path)
          Gets the resource with sufficient data to differentiate it from another resource.
 ResourceImpl CommentsDAO.getResourceWithMinimumData(String path)
          Gets the resource with sufficient data to differentiate it from another resource.
 ResourceImpl ResourceDAO.getResourceWithNoUpdate(ResourceIDImpl resourceID)
          Method to get resource without setting the resource modified flags on.
 

Methods in org.wso2.carbon.registry.core.jdbc.dao with parameters of type ResourceImpl
 void ResourceDAO.add(String path, ResourceIDImpl parentID, ResourceImpl resourceImpl)
          Add the resource to a pat when resource instance and the parent resource id is given.
 int CommentsVersionDAO.addComment(ResourceImpl resource, String userID, Comment comment)
          Method to persist a comment.
 int CommentsDAO.addComment(ResourceImpl resource, String userID, Comment comment)
          Method to persist a comment.
 void CommentsVersionDAO.addComments(ResourceImpl resource, CommentDO[] commentDOs)
          Method to persist comments.
 void CommentsDAO.addComments(ResourceImpl resource, CommentDO[] commentDOs)
          Method to persist comments.
 void ResourceDAO.addContent(ResourceImpl resourceImpl)
          Add the content for a resource.
 void ResourceDAO.addProperties(ResourceImpl resource)
          Add the properties to the database from given resource
 void RatingsDAO.addRating(ResourceImpl resourceImpl, String userID, int rating)
          Method to persist a rating.
 void RatingsVersionDAO.addRating(ResourceImpl resourceImpl, String userID, int rating)
          Method to persist a rating.
 void RatingsDAO.addRatings(ResourceImpl resource, RatingDO[] ratingDOs)
          Method to persist ratings.
 void ResourceDAO.addResource(ResourceImpl resourceImpl, boolean isUpdatingExisting)
          Add a resource, provided whether it is overwriting existing one or not.
 void ResourceDAO.addResourceWithNoUpdate(ResourceImpl resourceImpl)
          Add a resource without setting the resource modified flag on.
 void ResourceDAO.addResourceWithoutContentId(ResourceImpl resourceImpl, boolean isUpdatingExisting)
          Add a resource without a content id, provided whether it is overwriting existing one or not.
 void ResourceDAO.addRoot(ResourceImpl resourceImpl)
          Add the root collection.
 void TagsDAO.addTagging(String tagName, ResourceImpl resource, String userID)
          Method to persist a tag.
 void TagsVersionDAO.addTagging(String tagName, ResourceImpl resource, String userID)
          Method to persist a tag.
 void TagsDAO.addTaggings(ResourceImpl resource, TaggingDO[] taggingDOs)
          Method to persist tags.
 void TagsVersionDAO.addTaggings(ResourceImpl resource, TaggingDO[] taggingDOs)
          Method to persist tags.
 void CommentsVersionDAO.copyComments(ResourceImpl sourceResource, ResourceImpl targetResource)
          Method to copy comments.
 void CommentsDAO.copyComments(ResourceImpl sourceResource, ResourceImpl targetResource)
          Method to copy comments.
 void RatingsDAO.copyRatings(ResourceImpl fromResource, ResourceImpl toResource)
          Method to copy ratings.
 void RatingsVersionDAO.copyRatings(ResourceImpl fromResource, ResourceImpl toResource)
          Method to copy ratings.
 void TagsDAO.copyTags(ResourceImpl fromResource, ResourceImpl toResource)
          Method to copy tags.
 void TagsVersionDAO.copyTags(ResourceImpl fromResource, ResourceImpl toResource)
          Method to copy tags.
 void ResourceDAO.createAndApplyResourceID(String path, ResourceIDImpl parentID, ResourceImpl resourceImpl)
          The method to create a resource id and assign to resource instance
 void ResourceDAO.fillResource(ResourceImpl resourceImpl)
          Fill the content (for non-collection) and the properties for a resource that already filled meta data
 void ResourceDAO.fillResourceContent(ResourceImpl resourceImpl)
          Fill resource content for a given resource implementation.
 void ResourceVersionDAO.fillResourceContentArchived(ResourceImpl resourceImpl)
          Fill the archived content to the resource object.
 void ResourceDAO.fillResourceContentWithNoUpdate(ResourceImpl resourceImpl)
          Fill resource content for a given resource implementation without setting the resource modified flag on.
 void ResourceDAO.fillResourceProperties(ResourceImpl resourceImpl)
          Fill the properties for a resource, this will change the properties modified flag.
 void ResourceDAO.fillResourcePropertiesWithNoUpdate(ResourceImpl resourceImpl)
          Fill the properties for a resource without making the properties modified flag.
 float RatingsDAO.getAverageRating(ResourceImpl resourceImpl)
          Method to get the average rating added to a given resource.
 float RatingsVersionDAO.getAverageRating(ResourceImpl resourceImpl)
          Method to get the average rating added to a given resource.
 Comment[] CommentsVersionDAO.getComments(ResourceImpl resource)
          Method to get comments added to a given resource.
 Comment[] CommentsDAO.getComments(ResourceImpl resource)
          Method to get comments added to a given resource.
 String[] RatingsDAO.getRatedUserNames(ResourceImpl resourceImpl)
          Method to get users who rated the given resource.
 String[] RatingsVersionDAO.getRatedUserNames(ResourceImpl resourceImpl)
          Method to get users who rated the given resource.
 int RatingsDAO.getRateID(ResourceImpl resourceImpl, String userID)
          Method to get a id of a rating added to a given resource.
 int RatingsVersionDAO.getRateID(ResourceImpl resourceImpl, String userID)
          Method to get a id of a rating added to a given resource.
 int RatingsDAO.getRating(ResourceImpl resourceImpl, String userID)
          Method to get a rating added to a given resource.
 RatingDO RatingsDAO.getRatingDO(ResourceImpl resourceImpl, String userID)
          Method to get a rating added by the given user to the given resource.
 RatingDO RatingsVersionDAO.getRatingDO(ResourceImpl resourceImpl, String userID)
          Method to get a rating added by the given user to the given resource.
 RatingDO[] RatingsDAO.getResourceRatingDO(ResourceImpl resourceImpl)
          Method to get ratings added by all users to the given resource.
 RatingDO[] RatingsVersionDAO.getResourceRatingDO(ResourceImpl resourceImpl)
          Method to get ratings added by all users to the given resource.
 long TagsDAO.getTagCount(ResourceImpl resourceImpl, String tag)
          Method to get the number of tags added to the given resource, by the given name.
 long TagsVersionDAO.getTagCount(ResourceImpl resourceImpl, String tag)
          Method to get the number of tags added to the given resource, by the given name.
 List<TaggingDO> TagsDAO.getTagDOs(ResourceImpl resourceImpl)
          Method to get the data objects of tags added to the given resource.
 List<TaggingDO> TagsVersionDAO.getTagDOs(ResourceImpl resourceImpl)
          Method to get the data objects of tags added to the given resource.
 TaggingDO[] TagsDAO.getTagging(ResourceImpl resource)
          Method to get all taggings added to a given resource.
 TaggingDO[] TagsVersionDAO.getTagging(ResourceImpl resource)
          Method to get all taggings added to a given resource.
 TaggingDO[] TagsDAO.getTagging(ResourceImpl resource, String tag, String userID)
          Method to get a tagging added to a given resource by the given user.
 TaggingDO[] TagsVersionDAO.getTagging(ResourceImpl resource, String tag, String userID)
          Method to get a tagging added to a given resource by the given user.
 String[] TagsDAO.getTags(ResourceImpl resourceImpl)
          Method to get the names of tags added to the given resource.
 String[] TagsVersionDAO.getTags(ResourceImpl resourceImpl)
          Method to get the names of tags added to the given resource.
 Tag[] TagsDAO.getTagsWithCount(ResourceImpl resourceImpl)
          Method to get tags added to the given resource, along with the count.
 Tag[] TagsVersionDAO.getTagsWithCount(ResourceImpl resourceImpl)
          Method to get tags added to the given resource, along with the count.
 void CommentsDAO.removeComments(ResourceImpl resource)
          Method to remove all comments added to a resource.
 void RatingsDAO.removeRatings(ResourceImpl resourceImpl)
          Method to remove all ratings added to a resource.
 void TagsDAO.removeTags(ResourceImpl resource)
          Removes all tags added to the given resource by user with the given id.
 void TagsDAO.removeTags(ResourceImpl resource, String tag)
          Removes a tag by the given name added to the given resource by any user.
 void TagsDAO.removeTags(ResourceImpl resource, String tag, String userID)
          Removes a tag by the given name added to the given resource by user with the given id.
 boolean TagsDAO.taggingExists(String tagName, ResourceImpl resourceImpl, String userID)
          Method to determine whether the given tag exists.
 boolean TagsVersionDAO.taggingExists(String tagName, ResourceImpl resourceImpl, String userID)
          Method to determine whether the given tag exists.
 void ResourceDAO.update(ResourceImpl resourceImpl)
          Save the updates of a given resource.
 void ResourceDAO.updateContentId(ResourceImpl resourceImpl)
          Update the content id of a resource, Normally this should be called after calling addResourceWithoutContentId is called.
 void RatingsDAO.updateRating(ResourceImpl resourceImpl, int rateID, int rating)
          Method to update a rating added to a resource.
 

Uses of ResourceImpl in org.wso2.carbon.registry.core.servlet
 

Methods in org.wso2.carbon.registry.core.servlet that return ResourceImpl
static ResourceImpl FileUploadUtil.processUpload(javax.servlet.http.HttpServletRequest req)
          Deprecated.  
 

Uses of ResourceImpl in org.wso2.carbon.registry.core.utils
 

Methods in org.wso2.carbon.registry.core.utils that return ResourceImpl
static ResourceImpl RegistryUtils.getResourceWithMinimumData(String path, ResourceDAO resourceDAO, boolean versioned)
          Gets the resource with sufficient data to differentiate it from another resource.
 



Copyright © 2010. All Rights Reserved.