Uses of Class
info.ejava.examples.jaxrs.todos.dto.TodoItemDTO
-
-
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)
-
Uses of TodoItemDTO in info.ejava.examples.jaxrs.todos.ejb
Methods in info.ejava.examples.jaxrs.todos.ejb that return TodoItemDTO Modifier and Type Method Description TodoItemDTO
DtoMapper. map(TodoItem bo)
TodoItemDTO
TodosMgmtEJB. updateTodoListItem(String listName, String itemName, TodoItemDTO item)
TodoItemDTO
TodosMgmtRemote. updateTodoListItem(String listName, String itemName, TodoItemDTO item)
Methods in info.ejava.examples.jaxrs.todos.ejb with parameters of type TodoItemDTO Modifier and Type Method Description void
TodosMgmtEJB. addTodoListItem(String listName, TodoItemDTO item)
void
TodosMgmtRemote. addTodoListItem(String listName, TodoItemDTO item)
TodoItem
DtoMapper. map(TodoItemDTO dto)
TodoItemDTO
TodosMgmtEJB. updateTodoListItem(String listName, String itemName, TodoItemDTO item)
TodoItemDTO
TodosMgmtRemote. updateTodoListItem(String listName, String itemName, TodoItemDTO item)
-
Uses of TodoItemDTO in info.ejava.examples.jaxrs.todos.rs
Methods in info.ejava.examples.jaxrs.todos.rs with parameters of type TodoItemDTO Modifier and Type Method Description javax.ws.rs.core.Response
TodoListsResource. addTodoItem(String listName, TodoItemDTO item)
javax.ws.rs.core.Response
TodoListsResource. updateTodoItem(String listName, String itemName, TodoItemDTO item)
-
Uses of TodoItemDTO in info.ejava.examples.jaxrs.todos.ui
Methods in info.ejava.examples.jaxrs.todos.ui with parameters of type TodoItemDTO Modifier and Type Method Description void
TodoListController.Action. execute(HttpServletRequest req, HttpServletResponse resp, TodoListDTO todoList, TodoItemDTO todoItem)
void
TodoListController.DeleteTodoItemAction. execute(HttpServletRequest req, HttpServletResponse resp, TodoListDTO todoList, TodoItemDTO todoItem)
void
TodoListController.DeleteTodoListAction. execute(HttpServletRequest req, HttpServletResponse resp, TodoListDTO todoList, TodoItemDTO todoItem)
void
TodoListController.SetPriorityAction. execute(HttpServletRequest req, HttpServletResponse resp, TodoListDTO todoList, TodoItemDTO todoItem)
-