Class Customer
- java.lang.Object
-
- ejava.examples.ejbwar.customer.bo.CustomerRepresentation
-
- ejava.examples.ejbwar.customer.bo.Customer
-
- All Implemented Interfaces:
Serializable
@JsonbAnnotation @Entity public class Customer extends CustomerRepresentation
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
FIND_BY_NAME
private String
firstName
private int
id
private String
lastName
private static long
serialVersionUID
-
Fields inherited from class ejava.examples.ejbwar.customer.bo.CustomerRepresentation
NAMESPACE
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFirstName()
int
getId()
String
getLastName()
void
setFirstName(String firstName)
void
setId(int id)
void
setLastName(String lastName)
-
Methods inherited from class ejava.examples.ejbwar.customer.bo.CustomerRepresentation
getVersion, setVersion
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
FIND_BY_NAME
public static final String FIND_BY_NAME
- See Also:
- Constant Field Values
-
id
private int id
-
firstName
private String firstName
-
lastName
private String lastName
-
-