Independentsoft
Any library, any programming language
Home
Purchase
Support
Company
Contact
JGraph
>
Tutorial
> Update TodoTask List
The following example shows you how to update a TodoTask List.
import com.independentsoft.graph.GraphClient; import com.independentsoft.graph.GraphException; import com.independentsoft.graph.todo.TodoTaskList; 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"); java.util.List
todoTaskLists = client.getTodoTaskLists(); for (TodoTaskList list : todoTaskLists) { if (list.getDisplayName().equals("My Task List")) { TodoTaskList updateList = new TodoTaskList(); updateList.setId(list.getId()); updateList.setDisplayName("Updated Task List"); client.updateTodoTaskList(updateList); System.out.println("TodoTask List updated."); } } } catch (GraphException e) { System.out.println(e.getCode()); System.out.println(e.getMessage()); e.printStackTrace(); } } }
Need help? Ask our developers:
Name*
Email*
Message*