Project

General

Profile

« Previous | Next » 

Revision 58452b54

Added by Katja Luther over 14 years ago

modifier "abstract" removed in interfaces

View differences:

cdmlib-model/src/main/java/eu/etaxonomy/cdm/model/common/ICdmBase.java
26 26
	 * Returns local unique identifier for the concrete subclass
27 27
	 * @return
28 28
	 */
29
	public abstract int getId();
29
	public int getId();
30 30

  
31 31
	/**
32 32
	 * Assigns a unique local ID to this object. 
......
34 34
	 * set automatically by the persistence framework when object is saved.
35 35
	 * @param id
36 36
	 */
37
	public abstract void setId(int id);
37
	public void setId(int id);
38 38

  
39
	public abstract UUID getUuid();
39
	public UUID getUuid();
40 40

  
41
	public abstract void setUuid(UUID uuid);
41
	public void setUuid(UUID uuid);
42 42

  
43
	public abstract DateTime getCreated();
43
	public DateTime getCreated();
44 44

  
45 45
	/**
46 46
	 * Sets the timestamp this object was created. 
......
50 50
	 * 
51 51
	 * @param created
52 52
	 */
53
	public abstract void setCreated(DateTime created);
53
	public void setCreated(DateTime created);
54 54

  
55
	public abstract User getCreatedBy();
55
	public User getCreatedBy();
56 56

  
57
	public abstract void setCreatedBy(User createdBy);
57
	public void setCreatedBy(User createdBy);
58 58

  
59 59
}

Also available in: Unified diff