View Javadoc
1   package io.oasp.module.jpa.dataaccess.api;
2   
3   import javax.persistence.GeneratedValue;
4   import javax.persistence.GenerationType;
5   import javax.persistence.Id;
6   import javax.persistence.MappedSuperclass;
7   import javax.persistence.Transient;
8   import javax.persistence.Version;
9   
10  /**
11   * Abstract base implementation of {@link MutablePersistenceEntity} with a {@link GeneratedValue generated}
12   * {@link #getId() primary key}. In case you need a different type of key add it as extra column and make it
13   * {@link javax.persistence.Column#unique() unique}.
14   *
15   * @deprecated will be removed in a future release. In order to give OASP users more flexibility we want to stop
16   *             providing an JPA entity base class in this library. Instead we provide it with our application template
17   *             (oasp4j-template-server) so you can take over control of JPA annotations. If you already started with
18   *             OASP in an earlier version you can simply update `ApplicationPersistenceEntity` from our current sample
19   *             on github to get rid of the dependency to this class.
20   *
21   * @author hohwille
22   * @author rjoeris
23   */
24  @MappedSuperclass
25  @Deprecated
26  public abstract class AbstractPersistenceEntity implements MutablePersistenceEntity<Long> {
27  
28    private static final long serialVersionUID = 1L;
29  
30    /** @see #getId() */
31    private Long id;
32  
33    /** @see #getModificationCounter() */
34    private int modificationCounter;
35  
36    /** @see #getRevision() */
37    private Number revision;
38  
39    /**
40     * The constructor.
41     */
42    public AbstractPersistenceEntity() {
43  
44      super();
45    }
46  
47    @Override
48    @Id
49    @GeneratedValue(strategy = GenerationType.SEQUENCE)
50    public Long getId() {
51  
52      return this.id;
53    }
54  
55    /**
56     * {@inheritDoc}
57     */
58    @Override
59    public void setId(Long id) {
60  
61      this.id = id;
62    }
63  
64    @Override
65    @Version
66    public int getModificationCounter() {
67  
68      return this.modificationCounter;
69    }
70  
71    @Override
72    public void setModificationCounter(int version) {
73  
74      this.modificationCounter = version;
75    }
76  
77    @Override
78    @Transient
79    public Number getRevision() {
80  
81      return this.revision;
82    }
83  
84    /**
85     * @param revision the revision to set
86     */
87    @Override
88    public void setRevision(Number revision) {
89  
90      this.revision = revision;
91    }
92  
93    @Override
94    public String toString() {
95  
96      StringBuilder buffer = new StringBuilder();
97      toString(buffer);
98      return buffer.toString();
99    }
100 
101   /**
102    * Method to extend {@link #toString()} logic.
103    *
104    * @param buffer is the {@link StringBuilder} where to {@link StringBuilder#append(Object) append} the string
105    *        representation.
106    */
107   protected void toString(StringBuilder buffer) {
108 
109     buffer.append(getClass().getSimpleName());
110     if (this.id != null) {
111       buffer.append("[id=");
112       buffer.append(this.id);
113       buffer.append("]");
114     }
115   }
116 
117 }