Obtains subscription information about a binder.
public Subscription binder_getSubscription( String accessToken, long binderId );
The binder_getSubscription operation returns subscription information for a specified binder. When a user subscribes to a binder, that person receives e-mail notifications.
Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.
The binder identifier for the workspace or folder for which you want subscription information.
A Subscription Java object containing subscription information.
public static void checkBinderSubscriptions(long binderId) throws Exception { ... Subscription subscription = setupSubscription(binderId); stub.binder_setSubscription(null, binderId, subscription); subscription = stub.binder_getSubscription(null, binderId); validateSubscription(subscription); }
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)