Uses of Class
org.wso2.registry.Resource

Packages that use Resource
org.wso2.registry   
org.wso2.registry.inmemory   
org.wso2.registry.jdbc   
org.wso2.registry.jdbc.dao   
org.wso2.registry.jdbc.mediatypes   
org.wso2.registry.jdbc.mediatypes.builtin   
org.wso2.registry.jdbc.queries   
org.wso2.registry.jdbc.urlhandlers   
org.wso2.registry.secure   
org.wso2.registry.servlet   
org.wso2.registry.versions   
 

Uses of Resource in org.wso2.registry
 

Methods in org.wso2.registry that return Resource
 Resource Registry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
          Executes a custom query defined by users.
 Resource Registry.get(java.lang.String path)
          Returns the resource in the given path.
 

Methods in org.wso2.registry with parameters of type Resource
 void Registry.put(java.lang.String path, Resource resource)
          Adds or updates resources in the registry.
 

Uses of Resource in org.wso2.registry.inmemory
 

Methods in org.wso2.registry.inmemory that return Resource
 Resource InMemoryRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Resource InMemoryRegistry.get(java.lang.String path)
           
 

Methods in org.wso2.registry.inmemory with parameters of type Resource
 void InMemoryRegistry.put(java.lang.String path, Resource resource)
          Creates and updates resources (directories, repositories, content resourcess)
 

Uses of Resource in org.wso2.registry.jdbc
 

Methods in org.wso2.registry.jdbc that return Resource
 Resource JDBCRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Resource JDBCRegistry.get(java.lang.String path)
          Returns the resource in the given path.
 

Methods in org.wso2.registry.jdbc with parameters of type Resource
 void JDBCRegistry.put(java.lang.String path, Resource resource)
          Adds or updates resources in the registry.
 

Uses of Resource in org.wso2.registry.jdbc.dao
 

Methods in org.wso2.registry.jdbc.dao that return Resource
 Resource ResourceDAO.get(java.lang.String path, java.sql.Connection conn)
           
 Resource ResourceDAO.get(java.lang.String path, long versionNumber, java.sql.Connection conn)
           
 Resource VersionedResourceDAO.get(java.lang.String path, long versionNumber, java.sql.Connection conn)
          Returns the given version of the artifact.
 Resource ResourceDAO.getArtifactByID(long artifactID, long versionNumber, java.sql.Connection conn)
           
 Resource ResourceDAO.getLatestVersion(java.lang.String path, java.sql.Connection conn)
           
 Resource VersionedResourceDAO.getLatestVersion(java.lang.String path, java.sql.Connection conn)
          Returns the latest (current) version of an artifact.
 Resource VersionedResourceDAO.getResourceByID(long artifactID, long versionNumber, java.sql.Connection conn)
           
 

Methods in org.wso2.registry.jdbc.dao with parameters of type Resource
 void ResourceDAO.add(java.lang.String path, Resource resource, java.sql.Connection conn)
          Adds the given resource to the database.
 void VersionedResourceDAO.add(java.lang.String path, Resource resource, java.sql.Connection conn)
          Adds the given resource to the database.
 void VersionedResourceDAO.addResourceVersion(Resource resource, java.sql.Connection connection)
           
 void VersionedResourceDAO.deleteResource(Resource resource, java.sql.Connection connection)
          To delete a resource , what actualy happen here is that update the version table with the new data and resource will not actualy removed from the table
 void ResourceDAO.update(java.lang.String path, Resource resource, java.sql.Connection conn)
           
 void VersionedResourceDAO.update(java.lang.String path, Resource resource, java.sql.Connection conn)
           
 

Uses of Resource in org.wso2.registry.jdbc.mediatypes
 

Methods in org.wso2.registry.jdbc.mediatypes that return Resource
 Resource MediaTypeManager.get(java.lang.String path)
           
abstract  Resource MediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
          Processes the GET action of the media type.
 

Methods in org.wso2.registry.jdbc.mediatypes with parameters of type Resource
abstract  Resource MediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
          Processes the GET action of the media type.
 void MediaTypeManager.put(java.lang.String path, Resource resource)
           
abstract  boolean MediaTypeHandler.put(java.lang.String path, Resource resource)
          Processes the PUT action of the media type.
 

Uses of Resource in org.wso2.registry.jdbc.mediatypes.builtin
 

Methods in org.wso2.registry.jdbc.mediatypes.builtin that return Resource
 Resource SQLQueryMediaTypeHandler.get(java.lang.String path, Resource resource)
           
 Resource DefaultMediaTypeHandler.get(java.lang.String path, Resource resource)
           
 Resource SynapseRepositoryMediaTypeHandler.get(java.lang.String path, Resource resource)
           
 

Methods in org.wso2.registry.jdbc.mediatypes.builtin with parameters of type Resource
 Resource SQLQueryMediaTypeHandler.get(java.lang.String path, Resource resource)
           
 Resource DefaultMediaTypeHandler.get(java.lang.String path, Resource resource)
           
 Resource SynapseRepositoryMediaTypeHandler.get(java.lang.String path, Resource resource)
           
 boolean SQLQueryMediaTypeHandler.put(java.lang.String path, Resource resource)
           
 boolean DefaultMediaTypeHandler.put(java.lang.String path, Resource resource)
           
 boolean SynapseRepositoryMediaTypeHandler.put(java.lang.String path, Resource resource)
           
 

Uses of Resource in org.wso2.registry.jdbc.queries
 

Methods in org.wso2.registry.jdbc.queries that return Resource
 Resource SQLQueryProcessor.executeQuery(Resource query, java.lang.Object[] parameters, java.sql.Connection conn)
           
 Resource QueryProcessor.executeQuery(Resource query, java.lang.Object[] parameters, java.sql.Connection conn)
           
 

Methods in org.wso2.registry.jdbc.queries with parameters of type Resource
 Resource SQLQueryProcessor.executeQuery(Resource query, java.lang.Object[] parameters, java.sql.Connection conn)
           
 Resource QueryProcessor.executeQuery(Resource query, java.lang.Object[] parameters, java.sql.Connection conn)
           
 

Uses of Resource in org.wso2.registry.jdbc.urlhandlers
 

Methods in org.wso2.registry.jdbc.urlhandlers that return Resource
 Resource URLHandlerManager.handleURL(java.lang.String url)
           
 

Methods in org.wso2.registry.jdbc.urlhandlers with parameters of type Resource
 boolean RatingsCollectionURLHandler.handleURL(java.lang.String url, Resource resource)
           
 boolean TagURLHandler.handleURL(java.lang.String url, Resource resource)
          Accepts the URLs in the form ?tag=&user=
 boolean CommentURLHandler.handleURL(java.lang.String url, Resource resource)
          Accepts URL in the form ?comment
abstract  boolean URLHandler.handleURL(java.lang.String url, Resource resource)
           
 boolean CommentCollectionURLHandler.handleURL(java.lang.String url, Resource resource)
           
 

Uses of Resource in org.wso2.registry.secure
 

Methods in org.wso2.registry.secure that return Resource
 Resource SecureRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Resource SecureRegistry.get(java.lang.String path)
           
 

Methods in org.wso2.registry.secure with parameters of type Resource
 void SecureRegistry.put(java.lang.String path, Resource resource)
          Checks if the user has "PUT" permissions to the existing ascendent path of the given path.
 

Uses of Resource in org.wso2.registry.servlet
 

Methods in org.wso2.registry.servlet that return Resource
static Resource FileUploadUtil.processUpload(javax.servlet.http.HttpServletRequest req)
           
 

Uses of Resource in org.wso2.registry.versions
 

Methods in org.wso2.registry.versions with parameters of type Resource
static void VersionHandler.addResourceToVersionTable(java.sql.Connection connection, Resource resource)
          To add a new resource or to update a new resource we can use this.
static void VersionHandler.deleteResource(Resource resource, java.sql.Connection connection)
          To delete a resource , what actualy happen here is that update the version table with the new data and resource will not actualy removed from the table
 



Copyright © 2007 Apache Web Services Project. All Rights Reserved.