Modifies a binder.
public void binder_modifyBinder( String accessToken, Binder binder );
The binder_modifyBinder operation modifies 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.
Data and methods for the Binder Java object, defined in the Vibe source code.
None.
public static Binder modifyBinder(Binder binder) throws Exception { ... binder.setTitle(binder.getTitle() + " (Modified)"); binder.getDescription().setText(binder.getDescription().getText() + " (Modified)"); stub.binder_modifyBinder(null, binder); stub.binder_getBinder(null, binder.getId(), true); System.out.println("ID of the modified binder: " + binder.getId()); return binder; }
This code is taken from the source code for the teamingservice-client-with-stub.bat file.
Java objects in the Vibe sources (see Working with Java Objects)