Applies a tag for a binder.
public void binder_setTag( String accessToken, Tag tag );
The binder_setTag operation applies a tag to a workspace or folder.
Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.
A Tag Java object that contains information applying the tag to a workspace or folder.
None.
public static void checkTags(long binderId) throws Exception { ... Tag[] tags = setupTags(binderId); for (int i=0; i<tags.length; ++i) {stub.binder_setTag(null, tags[i]); } tags = stub.binder_getTags(null, binderId); validateTags(tags); stub.binder_deleteTag(null, binderId, tags[0].getId());
This code is taken from the source code for the teamingservice-client-with-stub.bat file.
Java objects in the Vibe sources (see Section 1.7.1, Working with Java Objects)