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.mediatypes.utils   
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.util.Map parameters)
          Executes a custom query which lives at the given path in the Registry.
 Resource CoreRegistry.get(java.lang.String path)
          Returns the resource at the given path.
 

Methods in org.wso2.registry with parameters of type Resource
 java.lang.String Registry.importResource(java.lang.String suggestedPath, java.lang.String sourceURL, Resource metadata)
          Creates a resource by fetching the resource content from the given URL.
 java.lang.String CoreRegistry.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.util.Map parameters)
           
 Resource RemoteRegistry.get(java.lang.String path)
           
 

Methods in org.wso2.registry.app with parameters of type Resource
static void RemoteRegistry.createPropertiesFromExtensionElement(Properties properties, Resource resource)
           
 java.lang.String RemoteRegistry.importResource(java.lang.String suggestedPath, java.lang.String sourceURL, Resource metadata)
           
 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.util.Map parameters)
           
 Resource InMemoryRegistry.get(java.lang.String path)
           
 

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

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.util.Map 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
 java.lang.String JDBCRegistry.importResource(java.lang.String suggestedPath, java.lang.String sourceURL, Resource metadata)
           
 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.
 long 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.
 java.lang.String MediaTypeManager.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
abstract  java.lang.String MediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
          Creates a resource in the given path by fetching the resource content from the given URL.
 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)
           
 java.lang.String XSDMediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
 java.lang.String WSDLMediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
 java.lang.String Axis2RepositoryMediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
 java.lang.String SQLQueryMediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
 java.lang.String DefaultMediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
 java.lang.String SynapseRepositoryMediaTypeHandler.importResource(java.lang.String path, java.lang.String sourceURL, Resource metadata)
           
 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.mediatypes.utils
 

Methods in org.wso2.registry.jdbc.mediatypes.utils with parameters of type Resource
 java.lang.String SchemaFileProcessor.saveSchemaFileToRegistry(java.lang.String location, java.util.Map processedSchemaMap, java.lang.String registryBasePath, boolean processIncludes, Resource metadata)
          Import a schema file to the registry after saving all its includes and imports to the registry and updating the schema locations accordingly.
 java.lang.String SchemaFileProcessor.saveSchemaFileToRegistry(java.lang.String location, java.lang.String registryBasePath, boolean processIncludes, Resource metadata)
          Import a schema file to the registry after saving all its includes and imports to the registry and updating the schema locations accordingly.
 void SchemaFileProcessor.saveSchemaFileToRegistry(org.apache.ws.commons.schema.XmlSchema xmlSchema, java.util.Map processedSchemaMap, java.util.Map changeSchemaNames, java.util.Set visitedSchemas, boolean isWSDLInlineSchema, java.lang.String registryBasePath, boolean processIncludes, Resource metadata)
          Save the schemas to the registry.
 void WSDLFileProcessor.saveWSDLFileToRegistry(javax.wsdl.Definition wsdlDefinition, java.util.Map processedWSDLMap, java.util.Set visitedWSDLs, java.lang.String registryBasePath, boolean processImports, Resource metadata)
           
 java.lang.String WSDLFileProcessor.saveWSDLFileToRegistry(java.lang.String location, java.lang.String registryBasePath, boolean processImports, Resource metadata)
          saves a wsdl file including its imports and imported schemas.
 

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.util.Map parameters)
           
abstract  Resource QueryProcessor.executeQuery(Resource query, java.util.Map parameters)
          This method will be called when a query of a registered type is executed.
 Resource QueryProcessorManager.executeQuery(Resource queryResource, java.util.Map parameters)
           
 

Methods in org.wso2.registry.jdbc.queries with parameters of type Resource
 Resource SQLQueryProcessor.executeQuery(Resource query, java.util.Map parameters)
           
abstract  Resource QueryProcessor.executeQuery(Resource query, java.util.Map parameters)
          This method will be called when a query of a registered type is executed.
 Resource QueryProcessorManager.executeQuery(Resource queryResource, java.util.Map parameters)
           
 

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

Methods in org.wso2.registry.jdbc.urlhandlers that return Resource
 Resource TagURLHandler.get(java.lang.String url)
          Accepts the URLs in the form ;tags::
 Resource URLHandlerManager.get(java.lang.String url)
           
 Resource RatingURLHandler.get(java.lang.String url)
           
 Resource RatingsCollectionURLHandler.get(java.lang.String url)
           
 Resource CommentURLHandler.get(java.lang.String url)
          Accepts URL in the form ;comments:
 Resource URLHandler.get(java.lang.String url)
          Determine if get(...) on the given url can be handled.
 Resource CommentCollectionURLHandler.get(java.lang.String url)
           
 

Methods in org.wso2.registry.jdbc.urlhandlers with parameters of type Resource
 java.lang.String URLHandlerManager.put(java.lang.String suggestPath, Resource resource)
           
 java.lang.String URLHandler.put(java.lang.String suggestPath, Resource resource)
          Determine if put(...) on the given url can be handled.
 

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.util.Map parameters)
           
 Resource SecureRegistry.get(java.lang.String path)
           
 

Methods in org.wso2.registry.secure with parameters of type Resource
 java.lang.String SecureRegistry.importResource(java.lang.String suggestedPath, java.lang.String sourceURL, Resource metadata)
           
 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.