View Javadoc
1   package com.srv4pos.server.api.treasurer;
2   
3   import com.srv4pos.server.api.infrastructure.Constraints;
4   import com.srv4pos.server.api.infrastructure.SyncEntityInfo;
5   import com.srv4pos.server.api.infrastructure.journal.JournalDate;
6   import com.srv4pos.server.api.validationGroups.IdentifierValidationGroup;
7   import org.springframework.roo.addon.javabean.RooJavaBean;
8   import org.springframework.roo.addon.json.RooJson;
9   import org.springframework.roo.addon.tostring.RooToString;
10  
11  import javax.validation.constraints.NotNull;
12  import javax.validation.constraints.Pattern;
13  import javax.validation.constraints.Size;
14  import java.util.Date;
15  
16  /**
17   * @author Ruslan Kashapov
18   */
19  @RooJavaBean
20  @RooToString
21  @RooJson(deepSerialize = true)
22  public class TreasurerInfo implements SyncEntityInfo {
23  
24      /**
25       * List of fields for ordering.
26       */
27      //CHECKSTYLE:OFF Missing Javadoc comments.
28      public static enum Fields { IDENTIFIER, NAME, SSN }
29      //CHECKSTYLE:ON Missing a Javadoc comment.
30  
31      /**
32       * True if entity was deleted.
33       */
34      @NotNull
35      private boolean deleted = Boolean.FALSE;
36  
37      /**
38       * This field uniquely identifies entity. There is no decision what is it,
39       * only the requirement - it must be unique trough one seller.
40       */
41      @NotNull(groups = IdentifierValidationGroup.class)
42      @Size(max = 50, min = 1)
43      @Pattern(regexp = Constraints.WINDOWS_FILENAME_REGEX)
44      private String identifier;
45  
46      /**
47       * User name.
48       */
49      @NotNull
50      @Size(max = 32, min = 1)
51      private String name;
52  
53      /**
54       * Social security number of user.
55       */
56      @NotNull
57      @Size(max = 16, min = 1)
58      private String ssn;
59  
60      @Size(max = 65535)
61      private String custom;
62  
63      private Integer version;
64  
65      @JournalDate
66      private Date modified;
67  
68      private String user;
69  }