Independentsoft
Professional software libraries for developers
Home
Purchase
Support
Company
Contact
JGraph
>
Tutorial
> Update Planner Bucket
The following example updates the name of an existing planner bucket.
import com.independentsoft.graph.GraphClient; import com.independentsoft.graph.GraphException; import com.independentsoft.graph.planner.PlannerBucket; public class Console { public static void main(String[] args) { try { GraphClient client = new GraphClient(); client.setClientId("63333333-209e-454e-b7bd-55a4d201270f"); client.setTenant("independentsoft.onmicrosoft.com"); client.setUsername("info@independentsoft.onmicrosoft.com"); client.setPassword("password"); String bucketId = "BBMkAGVm..."; PlannerBucket existingBucket = client.getPlannerBucket(bucketId); existingBucket.setName("In Progress"); client.updatePlannerBucket(existingBucket); } catch (GraphException e) { System.out.println(e.getCode()); System.out.println(e.getMessage()); e.printStackTrace(); } } }
Need help? Ask our developers:
Name*
Email*
Message*