Uses of Class
org.wso2.registry.Resource

Packages that use Resource
org.wso2.registry   
org.wso2.registry.app   
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   
 

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.
 Resource Registry.getResourcesOfMediaType(java.lang.String mediaType)
          Returns a collection resource containing the paths of the resources of the given media type.
 

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

Uses of Resource in org.wso2.registry.app
 

Methods in org.wso2.registry.app that return Resource
 Resource RemoteRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Resource RemoteRegistry.get(java.lang.String path)
           
 Resource RemoteRegistry.getResourcesOfMediaType(java.lang.String mediaType)
           
 

Methods in org.wso2.registry.app with parameters of type Resource
 java.lang.String RemoteRegistry.put(java.lang.String suggestedPath, Resource resource)
           
 

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)
           
 Resource InMemoryRegistry.getResourcesOfMediaType(java.lang.String mediaType)
           
 

Methods in org.wso2.registry.inmemory with parameters of type Resource
 java.lang.String InMemoryRegistry.put(java.lang.String suggestedPath, 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.
 Resource JDBCRegistry.getResourcesOfMediaType(java.lang.String mediaType)
           
 

Methods in org.wso2.registry.jdbc with parameters of type Resource
 java.lang.String JDBCRegistry.put(java.lang.String suggestedPath, 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 VersionedResourceDAO.get(java.lang.String path, long versionNumber, java.sql.Connection conn)
          Returns the given version of the artifact.
 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 VersionedResourceDAO.add(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 actually happen here is that update the version table with the new data and resource will not actually removed from the table
 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.
abstract  boolean MediaTypeHandler.putChild(java.lang.String childPath, Resource resource)
          Invokes when a child resource is added.
 

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

Methods in org.wso2.registry.jdbc.mediatypes.builtin that return Resource
 Resource XSDMediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
           
 Resource WSDLMediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
           
 Resource Axis2RepositoryMediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
           
 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 XSDMediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
           
 Resource WSDLMediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
           
 Resource Axis2RepositoryMediaTypeHandler.get(java.lang.String path, Resource rawArtifact)
           
 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 XSDMediaTypeHandler.put(java.lang.String path, Resource resource)
           
 boolean WSDLMediaTypeHandler.put(java.lang.String path, Resource resource)
           
 boolean Axis2RepositoryMediaTypeHandler.put(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)
           
 boolean XSDMediaTypeHandler.putChild(java.lang.String childPath, Resource resource)
           
 boolean WSDLMediaTypeHandler.putChild(java.lang.String childPath, Resource resource)
           
 boolean Axis2RepositoryMediaTypeHandler.putChild(java.lang.String childPath, Resource resource)
           
 boolean SQLQueryMediaTypeHandler.putChild(java.lang.String childPath, Resource resource)
           
 boolean DefaultMediaTypeHandler.putChild(java.lang.String childPath, Resource resource)
           
 boolean SynapseRepositoryMediaTypeHandler.putChild(java.lang.String childPath, 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 RatingURLHandler.handleURL(java.lang.String url, Resource 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 ;tags::
 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)
           
 Resource SecureRegistry.getResourcesOfMediaType(java.lang.String mediaType)
           
 

Methods in org.wso2.registry.secure with parameters of type Resource
 java.lang.String SecureRegistry.put(java.lang.String suggestedPath, 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 ResourceRequestProcessor.getResource(javax.servlet.http.HttpServletRequest request, java.lang.String path)
           
static Resource FileUploadUtil.processUpload(javax.servlet.http.HttpServletRequest req)
           
 



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