Class TodoItemDTO
- java.lang.Object
-
- info.ejava.examples.jaxrs.todos.dto.TodoItemDTO
-
- All Implemented Interfaces:
Serializable
public class TodoItemDTO extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private String
name
private Integer
priority
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description TodoItemDTO()
TodoItemDTO(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Integer
getPriority()
void
setName(String name)
void
setPriority(Integer priority)
String
toString()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
name
private String name
-
priority
private Integer priority
-
-
Constructor Detail
-
TodoItemDTO
public TodoItemDTO()
-
TodoItemDTO
public TodoItemDTO(String name)
-
-