Adding a tag
You can perform tagging operations using the registry. To tag a resource, you need the resource path and the tagging words. For example, to tag a resource named /c1/c2/r2
as "rename resource," do the following:
registry.applyTag("/c1/c2/r2" , "rename resource");
Retrieving all tags of a given resource
You can use the registry to retrieve tags for a given resource. It will return an array of type Tag
and you can iterate the array to see the content.
Tag[] tags = registry.getTags("/c1/c2/r2");
Deleting a tag
You can remove a tag using the tag name. Use the following code:
registry.removeTag("/c1/c2/r2","rename resource");
Retrieving resources with a specific tag
Resources that have a specific tag can be retrieved using the following code:
registry.getResourcePathsWithTag("wso2");
Overview
Content Tools
Activity