Added tests for service-layer pattern

This commit is contained in:
Jeroen Meulemeester
2015-12-29 01:19:46 +01:00
parent 52c483f1d0
commit fcfdbe71f5
11 changed files with 453 additions and 29 deletions
@@ -12,8 +12,37 @@ import javax.persistence.Version;
*/
@MappedSuperclass
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class BaseEntity {
public abstract class BaseEntity {
@Version
private Long version;
/**
* Indicates the unique id of this entity
*
* @return The id of the entity, or 'null' when not persisted
*/
public abstract Long getId();
/**
* Set the id of this entity
*
* @param id The new id
*/
public abstract void setId(Long id);
/**
* Get the name of this entity
*
* @return The name of the entity
*/
public abstract String getName();
/**
* Set the name of this entity
*
* @param name The new name
*/
public abstract void setName(final String name);
}