Uses of Class
org.wso2.registry.RegistryException

Packages that use RegistryException
org.wso2.registry   
org.wso2.registry.app   
org.wso2.registry.config   
org.wso2.registry.exceptions   
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.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.realm   
org.wso2.registry.jdbc.urlhandlers   
org.wso2.registry.secure   
org.wso2.registry.servlet   
org.wso2.registry.servlet.utils   
org.wso2.registry.utils   
 

Uses of RegistryException in org.wso2.registry
 

Methods in org.wso2.registry that throw RegistryException
 java.lang.String 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 CoreRegistry.delete(java.lang.String path)
          Deletes the resource at the given path.
 void Registry.editComment(java.lang.String commentPath, java.lang.String text)
          Change the text of an existing comment.
 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.
 float Registry.getAverageRating(java.lang.String resourcePath)
          Returns the average rating for the given resource.
 Comment[] Registry.getComments(java.lang.String resourcePath)
          Get all comments for the given resource.
 LogEntry[] Registry.getLogs(java.lang.String resourcePath, int action, java.lang.String userName, java.util.Date from, java.util.Date to, boolean recentFirst)
          Returns the logs of the activities occured in the registy.
 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 all Resources that are tagged with 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)
          Get a list of all versions of the resource located at the given path.
 void ResourceImporter.importDirectory(java.lang.String fromURL, java.lang.String toPath)
           
 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.
 void Registry.rateResource(java.lang.String resourcePath, int rating)
          Rate the given resource.
 void Registry.removeTag(java.lang.String path, java.lang.String tag)
          Removes a tag on a resource.
 java.lang.String Registry.rename(java.lang.String currentPath, java.lang.String newPath)
          Move or rename a resource in the registry.
 boolean CoreRegistry.resourceExists(java.lang.String path)
          Check whether a resource exists at the given path
 void Registry.restoreVersion(java.lang.String versionPath)
          Reverts a resource to a given version.
 

Uses of RegistryException in org.wso2.registry.app
 

Methods in org.wso2.registry.app that throw RegistryException
 java.lang.String RemoteRegistry.addComment(java.lang.String resourcePath, Comment comment)
           
 void RemoteRegistry.applyTag(java.lang.String resourcePath, java.lang.String tag)
           
 void RemoteRegistry.delete(java.lang.String path)
           
 void RemoteRegistry.editComment(java.lang.String commentPath, java.lang.String text)
           
 Resource RemoteRegistry.executeQuery(java.lang.String path, java.util.Map parameters)
           
 Resource RemoteRegistry.get(java.lang.String path)
           
 float RemoteRegistry.getAverageRating(java.lang.String resourcePath)
           
 Comment[] RemoteRegistry.getComments(java.lang.String resourcePath)
           
 LogEntry[] RemoteRegistry.getLogs(java.lang.String resourcePath, int action, java.lang.String userName, java.util.Date from, java.util.Date to, boolean recentFirst)
           
 int RemoteRegistry.getRating(java.lang.String path, java.lang.String userName)
           
 TaggedResourcePath[] RemoteRegistry.getResourcePathsWithTag(java.lang.String tag)
           
 Tag[] RemoteRegistry.getTags(java.lang.String resourcePath)
           
 java.lang.String[] RemoteRegistry.getVersions(java.lang.String path)
           
 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)
           
 void RemoteRegistry.rateResource(java.lang.String resourcePath, int rating)
           
 void RemoteRegistry.removeTag(java.lang.String path, java.lang.String tag)
           
 java.lang.String RemoteRegistry.rename(java.lang.String currentPath, java.lang.String newPath)
           
 boolean RemoteRegistry.resourceExists(java.lang.String path)
           
 void RemoteRegistry.restoreVersion(java.lang.String versionPath)
           
 

Uses of RegistryException in org.wso2.registry.config
 

Methods in org.wso2.registry.config that throw RegistryException
static void RegistryConfigurationProcessor.populateRegistryConfig(java.io.InputStream in, RegistryContext registryContext)
          Read XML configuration from the passed InputStream, or from the classpath.
static void RegistryConfigurationProcessor.populateRegistryConfig(java.lang.String filename, RegistryContext context)
           
 

Uses of RegistryException in org.wso2.registry.exceptions
 

Subclasses of RegistryException in org.wso2.registry.exceptions
 class ResourceNotFoundException
          This is thrown when a requested resource cannot be located in the Registry.
 

Uses of RegistryException in org.wso2.registry.inmemory
 

Methods in org.wso2.registry.inmemory that throw RegistryException
 java.lang.String 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.
 void InMemoryRegistry.editComment(java.lang.String commentPath, java.lang.String text)
           
 Resource InMemoryRegistry.executeQuery(java.lang.String path, java.util.Map parameters)
           
 Resource InMemoryRegistry.get(java.lang.String path)
           
 float InMemoryRegistry.getAverageRating(java.lang.String resourcePath)
           
 Comment[] InMemoryRegistry.getComments(java.lang.String resourcePath)
           
 LogEntry[] InMemoryRegistry.getLogs(java.lang.String resourcePath, int action, java.lang.String userName, java.util.Date from, java.util.Date to, boolean recentFirst)
           
 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)
           
 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.
 void InMemoryRegistry.rateResource(java.lang.String resourcePath, int rating)
           
 void InMemoryRegistry.removeTag(java.lang.String path, java.lang.String tag)
           
 java.lang.String InMemoryRegistry.rename(java.lang.String currentPath, java.lang.String newPath)
           
 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
 int 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
 java.lang.String 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.configure(javax.sql.DataSource dataSource, RegistryRealm realm)
          Configures and initiates the JDBC registry with a (new) datasource and a realm.
 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.
 void JDBCRegistry.editComment(java.lang.String commentPath, java.lang.String text)
           
 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.
 float JDBCRegistry.getAverageRating(java.lang.String resourcePath)
          Returns the average rating (from all users) for the given resource.
 Comment[] JDBCRegistry.getComments(java.lang.String resourcePath)
          Returns all comments for the given resource.
 java.sql.Connection ConnectionFactory.getConnection()
           
 javax.sql.DataSource ConnectionFactory.getDataSource()
           
 LogEntry[] JDBCRegistry.getLogs(java.lang.String resourcePath, int action, java.lang.String userName, java.util.Date from, java.util.Date to, boolean recentFirst)
           
 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)
           
 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.
 void JDBCRegistry.rateResource(java.lang.String resourcePath, int rating)
          Rates the given resource.
 void JDBCRegistry.removeTag(java.lang.String path, java.lang.String tag)
           
 java.lang.String JDBCRegistry.rename(java.lang.String currentPath, java.lang.String newPath)
           
 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()
           
ConnectionFactory(java.lang.String dataSourceName)
           
ConnectionFactory(java.lang.String driverClass, java.lang.String url, java.lang.String userName, java.lang.String password)
           
InMemoryJDBCRegistry()
          Creates an in-memory HSQL database based registry without the support for authentication and authorization.
InMemoryJDBCRegistry(RegistryRealm registryRealm)
          Creates the in-memory HSQL database and creates all tables necessary for the registry.
JDBCRegistry(javax.sql.DataSource dataSource)
          Constructs a JDBC registry to be used without any security (authorizations on actions).
JDBCRegistry(javax.sql.DataSource dataSource, org.wso2.usermanager.Realm realm)
          Constructs a JDBC registry to be used with secure registries.
 

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

Methods in org.wso2.registry.jdbc.dao that throw RegistryException
 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
 Resource VersionedResourceDAO.getLatestVersion(java.lang.String path, java.sql.Connection conn)
          Returns the latest (current) version of an artifact.
 void VersionedResourceDAO.renameResource(java.lang.String oldPath, java.lang.String newPath, java.sql.Connection conn, java.lang.String userId, org.wso2.usermanager.Realm realm)
          This method will move a resource from oldpath to newpath , the internal implementation is such that frit the release will be deleted from oldPath parent and will be added to the newptah so if the oldpath is "foo/bar/r1" then the r1 will be removed from foo/bar.
 void VersionedResourceDAO.restore(long resourceId, long toVersion, java.sql.Connection connection)
           
 

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.
 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.
abstract  boolean MediaTypeHandler.importChild(java.lang.String childPath, java.lang.String sourceURL)
          Invokes when a child resource is imported.
 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.
 

Constructors in org.wso2.registry.jdbc.mediatypes that throw RegistryException
MediaTypeManager(javax.sql.DataSource dataSource, org.wso2.usermanager.Realm realm)
           
 

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

Methods in org.wso2.registry.jdbc.mediatypes.builtin that throw RegistryException
 boolean XSDMediaTypeHandler.delete(java.lang.String path)
           
 boolean WSDLMediaTypeHandler.delete(java.lang.String path)
           
 boolean Axis2RepositoryMediaTypeHandler.delete(java.lang.String path)
           
 boolean SQLQueryMediaTypeHandler.delete(java.lang.String path)
           
 boolean DefaultMediaTypeHandler.delete(java.lang.String path)
           
 boolean SynapseRepositoryMediaTypeHandler.delete(java.lang.String path)
           
 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.importChild(java.lang.String childPath, java.lang.String sourceURL)
           
 boolean WSDLMediaTypeHandler.importChild(java.lang.String childPath, java.lang.String sourceURL)
           
 boolean Axis2RepositoryMediaTypeHandler.importChild(java.lang.String childPath, java.lang.String sourceURL)
           
 boolean SQLQueryMediaTypeHandler.importChild(java.lang.String childPath, java.lang.String sourceURL)
           
 boolean DefaultMediaTypeHandler.importChild(java.lang.String childPath, java.lang.String sourceURL)
           
 boolean SynapseRepositoryMediaTypeHandler.importChild(java.lang.String childPath, java.lang.String sourceURL)
           
 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 RegistryException in org.wso2.registry.jdbc.mediatypes.utils
 

Methods in org.wso2.registry.jdbc.mediatypes.utils that throw RegistryException
 void WSDLFileProcessor.calculateWSDLNamesAndChangeTypes(javax.wsdl.Definition wsdlDefinition, java.util.Map processedWSDLMap, java.util.Map processedScheamMap, java.util.Set visitedWSDLs, java.lang.String registryBasePath, boolean processImports)
          saves the given wsdl definition file with its imported wsdls and imported and included schemas.
 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 RegistryException in org.wso2.registry.jdbc.queries
 

Methods in org.wso2.registry.jdbc.queries that throw RegistryException
 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)
           
 

Constructors in org.wso2.registry.jdbc.queries that throw RegistryException
QueryProcessorManager(javax.sql.DataSource dataSource, org.wso2.usermanager.Realm realm)
           
 

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

Methods in org.wso2.registry.jdbc.realm that throw RegistryException
protected  void RegistryRealm.configure(javax.sql.DataSource dataSource)
           
 

Constructors in org.wso2.registry.jdbc.realm that throw RegistryException
InMemoryRegistryRealm()
           
RegistryRealm()
           
RegistryRealm(javax.sql.DataSource dataSource)
           
 

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

Methods in org.wso2.registry.jdbc.urlhandlers that throw RegistryException
 boolean URLHandlerManager.delete(java.lang.String path)
           
 boolean CommentURLHandler.delete(java.lang.String path)
           
 boolean URLHandler.delete(java.lang.String path)
          Determine if delete(...) on the given url can be handled.
 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)
           
 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.
 

Constructors in org.wso2.registry.jdbc.urlhandlers that throw RegistryException
URLHandlerManager(javax.sql.DataSource dataSource, org.wso2.usermanager.Realm realm, Registry registry)
           
 

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
 java.lang.String SecureRegistry.addComment(java.lang.String resourcePath, Comment comment)
           
 void RegistryUserManager.addRole(java.lang.String roleName)
           
 void RegistryUserManager.addUser(java.lang.String userName, java.lang.String password)
           
 void RegistryUserManager.addUserToRole(java.lang.String userName, java.lang.String roleName)
           
 void SecureRegistry.applyTag(java.lang.String resourcePath, java.lang.String tag)
           
 void RegistryUserManager.authorizeRole(java.lang.String roleName, java.lang.String resourceID, java.lang.String action)
           
 void RegistryUserManager.authorizeUser(java.lang.String userName, java.lang.String resourceID, java.lang.String action)
           
 void HSQLDBInitializer.createHSQLTables(javax.sql.DataSource dataSource)
           
 void SecureRegistry.delete(java.lang.String path)
           
 void RegistryUserManager.denyRole(java.lang.String roleName, java.lang.String resourceID, java.lang.String action)
           
 void RegistryUserManager.denyUser(java.lang.String userName, java.lang.String resourceID, java.lang.String action)
           
 void SecureRegistry.editComment(java.lang.String commentPath, java.lang.String text)
           
 Resource SecureRegistry.executeQuery(java.lang.String path, java.util.Map parameters)
           
 Resource SecureRegistry.get(java.lang.String path)
           
 java.lang.String[] RegistryUserManager.getAllRoles()
           
 java.lang.String[] RegistryUserManager.getAllUsers()
           
 float SecureRegistry.getAverageRating(java.lang.String resourcePath)
           
 Comment[] SecureRegistry.getComments(java.lang.String resourcePath)
           
 LogEntry[] SecureRegistry.getLogs(java.lang.String resourcePath, int action, java.lang.String userName, java.util.Date from, java.util.Date to, boolean recentFirst)
           
 int SecureRegistry.getRating(java.lang.String resourcePath, java.lang.String userName)
           
 TaggedResourcePath[] SecureRegistry.getResourcePathsWithTag(java.lang.String tag)
           
 Tag[] SecureRegistry.getTags(java.lang.String resourcePath)
           
 java.util.Map RegistryUserManager.getUserProperties(java.lang.String userName)
           
 java.lang.String RegistryUserManager.getUserProperty(java.lang.String userName, java.lang.String propName)
           
 java.lang.String[] SecureRegistry.getVersions(java.lang.String resourcePath)
           
 java.lang.String SecureRegistry.importResource(java.lang.String suggestedPath, java.lang.String sourceURL, Resource metadata)
           
 boolean RegistryUserManager.isUserAuthorized(java.lang.String userName, java.lang.String resourcePath, java.lang.String action)
           
 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.
 void SecureRegistry.rateResource(java.lang.String resourcePath, int rating)
           
 void RegistryUserManager.removeRole(java.lang.String roleName)
           
 void SecureRegistry.removeTag(java.lang.String resourcePath, java.lang.String tag)
           
 void RegistryUserManager.removeUser(java.lang.String userName)
           
 void RegistryUserManager.removeUserFromRole(java.lang.String userName, java.lang.String roleName)
           
 java.lang.String SecureRegistry.rename(java.lang.String currentPath, java.lang.String newPath)
           
 boolean SecureRegistry.resourceExists(java.lang.String resourcePath)
           
 void SecureRegistry.restoreVersion(java.lang.String versionPath)
           
 void RegistryUserManager.setUserProperties(java.lang.String userName, java.util.Map properties)
           
 void RegistryUserManager.setUserProperty(java.lang.String userName, java.lang.String name, java.lang.String value)
           
 boolean RegistryUserManager.userExists(java.lang.String userName)
           
 

Constructors in org.wso2.registry.secure that throw RegistryException
RegistryUserManager(org.wso2.usermanager.Realm userRealm)
           
RegistryUserManager(org.wso2.usermanager.Realm deafuleRealm, java.lang.String userName)
           
SecureRegistry(java.lang.String userID, Registry registry, org.wso2.usermanager.Realm defaultRealm)
          Non-authenticating constructor.
SecureRegistry(java.lang.String userID, java.lang.String password, Registry registry, org.wso2.usermanager.Realm defaultRealm)
           
 

Uses of RegistryException in org.wso2.registry.servlet
 

Methods in org.wso2.registry.servlet that throw RegistryException
static org.wso2.usermanager.Realm RegistryRealmFactory.createDataSourceAwareRegistryRealm(java.lang.String dataSourceName)
           
static org.wso2.usermanager.Realm RegistryRealmFactory.createInMemoryRegistryRealm()
           
static org.wso2.usermanager.Realm RegistryRealmFactory.createRegistryRealm(javax.servlet.ServletConfig config)
           
static org.wso2.usermanager.Realm RegistryRealmFactory.createURLBasedRegistryRealm(java.lang.String dbURL, java.lang.String driverName, java.lang.String userName, java.lang.String password)
           
static Resource ResourceRequestProcessor.getResource(javax.servlet.http.HttpServletRequest request, java.lang.String path)
           
static SecureRegistry ResourceRequestProcessor.getUserRegistry(javax.servlet.http.HttpServletRequest request)
           
 

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

Methods in org.wso2.registry.servlet.utils that throw RegistryException
static SecureRegistry Utils.getSecureRegistry(javax.servlet.http.HttpServletRequest request)
          Returns the registry associated with the current session.
static boolean UserUtil.isAuthorizeAllowed(java.lang.String userName, java.lang.String resourcePath, javax.servlet.http.HttpServletRequest request)
           
static boolean UserUtil.isDeleteAllowed(java.lang.String userName, java.lang.String resourcePath, javax.servlet.http.HttpServletRequest request)
           
static boolean UserUtil.isPutAllowed(java.lang.String userName, java.lang.String resourcePath, javax.servlet.http.HttpServletRequest request)
           
static void Utils.logInUser(javax.servlet.http.HttpServletRequest request, java.lang.String userName, java.lang.String password)
           
 

Uses of RegistryException in org.wso2.registry.utils
 

Methods in org.wso2.registry.utils that throw RegistryException
static void RegistryClientUtils.exportFromRegistry(java.io.File toFile, java.lang.String path, Registry registry)
          This method can be used to export registry instance or node in a registry to a local file system.
static void RegistryClientUtils.importToRegistry(java.io.File file, java.lang.String path, Registry registry)
          This method can be used to import a local file system into a running instance of a registry.
static void AuthorizationUtil.setDefaultAuthorizations(org.wso2.usermanager.Realm realm, java.lang.String path, java.lang.String authorUserName)
           
 



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