Uses of Class
info.ejava.examples.jaxrs.todos.dto.TodoItemDTO
-
Packages that use TodoItemDTO Package Description info.ejava.examples.jaxrs.todos.client info.ejava.examples.jaxrs.todos.dto -
-
Uses of TodoItemDTO in info.ejava.examples.jaxrs.todos.client
Methods in info.ejava.examples.jaxrs.todos.client with parameters of type TodoItemDTO Modifier and Type Method Description javax.ws.rs.core.Response
TodosJaxRsClient. addTodoItem(String listName, TodoItemDTO item)
javax.ws.rs.core.Response
TodosJaxRsClientImpl. addTodoItem(String listName, TodoItemDTO item)
javax.ws.rs.core.Response
TodosJaxRsClient. updateTodoItem(String listName, TodoItemDTO item)
javax.ws.rs.core.Response
TodosJaxRsClientImpl. updateTodoItem(String listName, TodoItemDTO item)
-
Uses of TodoItemDTO in info.ejava.examples.jaxrs.todos.dto
Fields in info.ejava.examples.jaxrs.todos.dto with type parameters of type TodoItemDTO Modifier and Type Field Description private List<TodoItemDTO>
TodoListDTO. todoItems
Methods in info.ejava.examples.jaxrs.todos.dto that return TodoItemDTO Modifier and Type Method Description TodoItemDTO
TodoListDTO. getListItem(String itemName)
Methods in info.ejava.examples.jaxrs.todos.dto that return types with arguments of type TodoItemDTO Modifier and Type Method Description List<TodoItemDTO>
TodoListDTO. getTodoItems()
Methods in info.ejava.examples.jaxrs.todos.dto with parameters of type TodoItemDTO Modifier and Type Method Description void
TodoListDTO. withTodoItem(TodoItemDTO todoItem)
Method parameters in info.ejava.examples.jaxrs.todos.dto with type arguments of type TodoItemDTO Modifier and Type Method Description void
TodoListDTO. setTodoItems(List<TodoItemDTO> todoItems)
-