Serialized Form
-
Package info.ejava.examples.ejb.interceptor.bo
-
Class info.ejava.examples.ejb.interceptor.bo.Contact extends Object implements Serializable
-
Serialized Fields
-
contactInfo
@Valid List<ContactInfo> contactInfo
-
id
int id
-
name
@NotNull(groups={PreNormalizedCheck.class,PrePersistCheck.class}) @Size(min=1,max=32,groups={PostNormalizedCheck.class,PrePersistCheck.class}) @Pattern(regexp="^[A-Za-z0-9-\\ ]+$",groups=PreNormalizedCheck.class) @Pattern(regexp="^([A-Z][a-z0-9-]+\\ *)+$",groups=PostNormalizedCheck.class) String name -
normalizedName
String normalizedName
-
-
-
Class info.ejava.examples.ejb.interceptor.bo.ContactInfo extends Object implements Serializable
-
Serialized Fields
-
contact
@NotNull(groups=PrePersistCheck.class) Contact contact
-
id
int id
-
role
@NotNull(groups={PostNormalizedCheck.class,PrePersistCheck.class}) ContactRole role
-
-
-
Class info.ejava.examples.ejb.interceptor.bo.PhoneInfo extends ContactInfo implements Serializable
-
Serialized Fields
-
extension
Integer extension
-
phoneNumber
@NotNull(groups={PreNormalizedCheck.class,PrePersistCheck.class}) @Size(min=12,max=12,groups=PostNormalizedCheck.class) @Pattern(regexp="^[0-9-]+$",groups=PreNormalizedCheck.class) @Pattern(regexp="^[0-9]{3}-[0-9]{3}-[0-9]{4}$",groups=PostNormalizedCheck.class) String phoneNumber
-
-
-
Class info.ejava.examples.ejb.interceptor.bo.PostalAddress extends Object implements Serializable
-
Serialized Fields
-
city
@NotNull(groups={PreNormalizedCheck.class,PrePersistCheck.class}) @Pattern(regexp="^[A-Za-z-\'\\ ]+$",groups=PreNormalizedCheck.class) @Pattern(regexp="^([A-Z][a-z-]+\\ *)+$",groups=PostNormalizedCheck.class) String city -
state
@NotNull(groups=PrePersistCheck.class) @Size(min=2,max=2,groups={PostNormalizedCheck.class,PrePersistCheck.class}) @Pattern(regexp="[A-Za-z]{2}",groups=PreNormalizedCheck.class) @Pattern(regexp="[A-Z][A-Z]",groups=PostNormalizedCheck.class) String state
-
street1
@NotNull(groups={PreNormalizedCheck.class,PrePersistCheck.class}) @Size(min=2,max=30,groups={PostNormalizedCheck.class,PrePersistCheck.class}) @Pattern(regexp="^[0-9-A-Za-z\'\\ ]+$",groups=PreNormalizedCheck.class) @Pattern(regexp="^([0-9]+\\ )([A-Z][a-z0-9-]+\\ *)+$",groups=PostNormalizedCheck.class) String street1 -
street2
@Pattern(regexp="^[0-9-A-Za-z\'\\ ]+$",groups=PreNormalizedCheck.class) @Pattern(regexp="^([A-Z][a-z0-9-]+\\ *)+$",groups=PostNormalizedCheck.class) String street2
-
zip
@NotNull(groups={PreNormalizedCheck.class,PrePersistCheck.class}) @Size(min=5,max=10,groups={PostNormalizedCheck.class,PrePersistCheck.class}) @Pattern(regexp="^[0-9]{5}(-[0-9]{4})?$",groups=PostNormalizedCheck.class) String zip
-
-
-
Class info.ejava.examples.ejb.interceptor.bo.PostalInfo extends ContactInfo implements Serializable
-
Serialized Fields
-
address
@NotNull(groups=PreNormalizedCheck.class) @Valid PostalAddress address
-
type
@NotNull(groups={PreNormalizedCheck.class,PrePersistCheck.class}) AddressType type
-
-
-
-
Package info.ejava.examples.ejb.interceptor.ejb
-
Class info.ejava.examples.ejb.interceptor.ejb.ContactNotFound extends Exception implements Serializable
-
Serialized Fields
-
contactId
int contactId
-
-
-
Class info.ejava.examples.ejb.interceptor.ejb.InvalidParam extends Exception implements Serializable
-