Uses of Class
org.wso2.registry.RegistryException

Packages that use RegistryException
org.wso2.registry   
org.wso2.registry.inmemory   
org.wso2.registry.inmemory.comments   
org.wso2.registry.inmemory.ratings   
org.wso2.registry.inmemory.tags   
org.wso2.registry.jdbc   
org.wso2.registry.jdbc.mediatypes   
org.wso2.registry.jdbc.mediatypes.builtin   
org.wso2.registry.jdbc.queries   
org.wso2.registry.jdbc.urlhandlers   
org.wso2.registry.jdbc.utils   
org.wso2.registry.secure   
org.wso2.registry.servlet   
 

Uses of RegistryException in org.wso2.registry
 

Methods in org.wso2.registry that throw RegistryException
 void Registry.addComment(java.lang.String resourcePath, Comment comment)
          Adds a comment to a resource.
 void Registry.applyTag(java.lang.String resourcePath, java.lang.String tag)
          Applies the given tag to the resource in the given path.
 void Registry.delete(java.lang.String path)
          Deletes the resource in the given path.
 Artifact Registry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
          Executes a custom query defined by users.
 Artifact Registry.get(java.lang.String path)
          Returns the resource in the given path.
 int Registry.getAverageRating(java.lang.String resourcePath)
          Returns the avarage rating for the given resource.
 Comment[] Registry.getComments(java.lang.String resourcePath)
          Retruns all comments for the given resource.
 int Registry.getRating(java.lang.String path, java.lang.String userName)
          Returns the rating given to the specified resource by the given user
 TaggedResourcePath[] Registry.getResourcePathsWithTag(java.lang.String tag)
          Returns the paths of the resources, which are tagged using the given tag.
 Tag[] Registry.getTags(java.lang.String resourcePath)
          Returns all tags used for tagging the given resource.
 java.lang.String[] Registry.getVersions(java.lang.String path)
          Returns the paths of the versions of the resource located at the given path.
 void ResourceImporter.importDirectory(java.lang.String fromURL, java.lang.String toPath)
           
 void Registry.put(java.lang.String path, Artifact artifact)
          Adds or updates resources in the registry.
 void Registry.rateResource(java.lang.String resourcePath, int rating)
          Rates the given resource.
 boolean Registry.resourceExists(java.lang.String path)
          Check whether a resource exist in the given path
 void Registry.restoreVersion(java.lang.String versionPath)
          Reverts a resource to a given version.
 

Uses of RegistryException in org.wso2.registry.inmemory
 

Methods in org.wso2.registry.inmemory that throw RegistryException
 void InMemoryRegistry.addComment(java.lang.String resourcePath, Comment comment)
           
 void InMemoryRegistry.applyTag(java.lang.String resourcePath, java.lang.String tag)
           
 void InMemoryRegistry.delete(java.lang.String path)
          Deletes a resource from the resourceMap.
 Artifact InMemoryRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Artifact InMemoryRegistry.get(java.lang.String path)
           
 int InMemoryRegistry.getAverageRating(java.lang.String resourcePath)
           
 Comment[] InMemoryRegistry.getComments(java.lang.String resourcePath)
           
 int InMemoryRegistry.getRating(java.lang.String path, java.lang.String userName)
           
 TaggedResourcePath[] InMemoryRegistry.getResourcePathsWithTag(java.lang.String tag)
           
 Tag[] InMemoryRegistry.getTags(java.lang.String resourcePath)
           
 java.lang.String[] InMemoryRegistry.getVersions(java.lang.String path)
           
 void InMemoryRegistry.put(java.lang.String path, Artifact artifact)
          Creates and updates resources (directories, repositories, content resourcess)
 void InMemoryRegistry.rateResource(java.lang.String resourcePath, int rating)
           
 boolean InMemoryRegistry.resourceExists(java.lang.String path)
           
 void InMemoryRegistry.restoreVersion(java.lang.String versionPath)
           
 

Uses of RegistryException in org.wso2.registry.inmemory.comments
 

Methods in org.wso2.registry.inmemory.comments that throw RegistryException
 void CommentManager.addComment(java.lang.String resourcePath, Comment comment)
           
 

Uses of RegistryException in org.wso2.registry.inmemory.ratings
 

Methods in org.wso2.registry.inmemory.ratings that throw RegistryException
 void RatingsManager.rateResource(java.lang.String resourcePath, int rating)
           
 

Uses of RegistryException in org.wso2.registry.inmemory.tags
 

Methods in org.wso2.registry.inmemory.tags that throw RegistryException
 void TagManager.applyTag(java.lang.String resourcePath, java.lang.String tag)
           
 Tag[] TagManager.getTags(java.lang.String resourcePath)
           
 

Uses of RegistryException in org.wso2.registry.jdbc
 

Methods in org.wso2.registry.jdbc that throw RegistryException
 void JDBCRegistry.addComment(java.lang.String resourcePath, Comment comment)
          Adds a comment to a resource.
 void JDBCRegistry.applyTag(java.lang.String resourcePath, java.lang.String tag)
          Applies the given tag to the resource in the given path.
 void JDBCRegistry.defineQuery(java.lang.String name, java.lang.String query)
           
 void JDBCRegistry.delete(java.lang.String path)
          Deletes the resource in the given path.
 Artifact JDBCRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Artifact JDBCRegistry.get(java.lang.String path)
          Returns the resource in the given path.
 int JDBCRegistry.getAverageRating(java.lang.String resourcePath)
          Returns the avarage rating for the given resource.
 Comment[] JDBCRegistry.getComments(java.lang.String resourcePath)
          Retruns all comments for the given resource.
 java.sql.Connection ConnectionFactory.getConnection()
           
 int JDBCRegistry.getRating(java.lang.String path, java.lang.String userName)
           
 TaggedResourcePath[] JDBCRegistry.getResourcePathsWithTag(java.lang.String tag)
          Returns the paths of the resources, which are tagged using the given tag.
 Tag[] JDBCRegistry.getTags(java.lang.String resourcePath)
          Returns all tags used for tagging the given resource.
 java.lang.String[] JDBCRegistry.getVersions(java.lang.String path)
           
 void JDBCRegistry.put(java.lang.String path, Artifact artifact)
          Adds or updates resources in the registry.
 void JDBCRegistry.rateResource(java.lang.String resourcePath, int rating)
          Rates the given resource.
 boolean JDBCRegistry.resourceExists(java.lang.String path)
           
 void JDBCRegistry.restoreVersion(java.lang.String versionPath)
           
 void JDBCRegistry.shutdown()
           
 

Constructors in org.wso2.registry.jdbc that throw RegistryException
ConnectionFactory()
           
JDBCRegistry(org.wso2.usermanager.Realm realm)
           
 

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

Methods in org.wso2.registry.jdbc.mediatypes that throw RegistryException
 void MediaTypeManager.delete(java.lang.String path)
           
abstract  boolean MediaTypeHandler.delete(java.lang.String path)
          Processes the DELETE action of the media type.
 Artifact MediaTypeManager.get(java.lang.String path)
           
abstract  Artifact MediaTypeHandler.get(java.lang.String path, Artifact rawArtifact)
          Processes the GET action of the media type.
 void MediaTypeManager.put(java.lang.String path, Artifact artifact)
           
abstract  boolean MediaTypeHandler.put(java.lang.String path, Artifact artifact)
          Processes the PUT action of the media type.
 

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

Methods in org.wso2.registry.jdbc.mediatypes.builtin that throw RegistryException
 boolean SQLQueryMediaTypeHandler.delete(java.lang.String path)
           
 boolean DefaultMediaTypeHandler.delete(java.lang.String path)
           
 boolean SynapseRepositoryMediaTypeHandler.delete(java.lang.String path)
           
 Artifact SQLQueryMediaTypeHandler.get(java.lang.String path, Artifact artifact)
           
 Artifact DefaultMediaTypeHandler.get(java.lang.String path, Artifact artifact)
           
 Artifact SynapseRepositoryMediaTypeHandler.get(java.lang.String path, Artifact artifact)
           
 boolean SQLQueryMediaTypeHandler.put(java.lang.String path, Artifact artifact)
           
 boolean DefaultMediaTypeHandler.put(java.lang.String path, Artifact artifact)
           
 boolean SynapseRepositoryMediaTypeHandler.put(java.lang.String path, Artifact artifact)
           
 

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

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

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

Methods in org.wso2.registry.jdbc.urlhandlers that throw RegistryException
 Artifact URLHandlerManager.handleURL(java.lang.String url)
           
 boolean TagURLHandler.handleURL(java.lang.String url, Artifact artifact)
          Accepts the URLs in the form ?tag=&user=
 boolean CommentURLHandler.handleURL(java.lang.String url, Artifact artifact)
          Accepts URL in the form ?comment
abstract  boolean URLHandler.handleURL(java.lang.String url, Artifact artifact)
           
 boolean CommentCollectionURLHandler.handleURL(java.lang.String url, Artifact artifact)
           
 

Uses of RegistryException in org.wso2.registry.jdbc.utils
 

Methods in org.wso2.registry.jdbc.utils that throw RegistryException
 void AuthorizationUtil.setDefaultAuthorizations(org.wso2.usermanager.Realm realm, java.lang.String path, java.lang.String authorUserName)
           
 

Uses of RegistryException in org.wso2.registry.secure
 

Subclasses of RegistryException in org.wso2.registry.secure
 class AuthorizationFailedException
           
 

Methods in org.wso2.registry.secure that throw RegistryException
 void SecureRegistry.addComment(java.lang.String resourcePath, Comment comment)
           
 void RegistryUserManager.addUser(java.lang.String userName, java.lang.String password)
           
 void SecureRegistry.applyTag(java.lang.String resourcePath, java.lang.String tag)
           
 void RegistryUserManager.authorizeUser(java.lang.String userName, java.lang.String resourceID, java.lang.String action)
           
 void HSQLDBInitializer.createHSQLTables()
           
 void SecureRegistry.delete(java.lang.String path)
           
 void RegistryUserManager.denyUser(java.lang.String userName, java.lang.String resourceID, java.lang.String action)
           
 Artifact SecureRegistry.executeQuery(java.lang.String path, java.lang.Object[] parameters)
           
 Artifact SecureRegistry.get(java.lang.String path)
           
 java.lang.String[] RegistryUserManager.getAllUsers()
           
 int SecureRegistry.getAverageRating(java.lang.String resourcePath)
           
 Comment[] SecureRegistry.getComments(java.lang.String resourcePath)
           
 int SecureRegistry.getRating(java.lang.String path, java.lang.String userName)
           
 TaggedResourcePath[] SecureRegistry.getResourcePathsWithTag(java.lang.String tag)
           
 Tag[] SecureRegistry.getTags(java.lang.String resourcePath)
           
 java.lang.String[] SecureRegistry.getVersions(java.lang.String path)
           
 org.wso2.usermanager.Realm RegistryRealmFactory.newInMemoryRegistryRealm(java.lang.String sqlFilePath)
           
 org.wso2.usermanager.Realm RegistryRealmFactory.newRegistryRealm(java.lang.String sqlFilePath, java.lang.String dbURL, java.lang.String driver)
           
 void SecureRegistry.put(java.lang.String path, Artifact artifact)
          Checks if the user has "PUT" permissions to the existing ascendent path of the given path.
 void SecureRegistry.rateResource(java.lang.String resourcePath, int rating)
           
 void RegistryUserManager.removeUser(java.lang.String userName)
           
 boolean SecureRegistry.resourceExists(java.lang.String path)
           
 void SecureRegistry.restoreVersion(java.lang.String versionPath)
           
 

Constructors in org.wso2.registry.secure that throw RegistryException
SecureRegistry(java.lang.String userID, java.lang.String password, Registry registry, org.wso2.usermanager.Realm realm)
           
 

Uses of RegistryException in org.wso2.registry.servlet
 

Methods in org.wso2.registry.servlet that throw RegistryException
static SecureRegistry Utils.getSecureRegistry(javax.servlet.http.HttpServletRequest request)
          Returns the registry associated with the current session.
 



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