Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 shop2020 1
/**
2
 * 
3
 */
4
package in.shop2020.metamodel.util;
5
 
6
/**
7
 * @author naveen
8
 *
9
 */
10
public abstract class ReusableMetaModelComponent extends MetaModelComponent {
11
	/**
12
	 * 
13
	 */
14
	private static final long serialVersionUID = 1L;
15
	protected long id;
16
 
17
	/**
18
	 * 
19
	 * @param newID
20
	 */
21
	public ReusableMetaModelComponent(long newID) {
22
		this.id = newID;
23
	}
24
	/**
25
	 * 
26
	 * @return id
27
	 */
28
	public long getID() {
29
		return this.id;
30
	}
31
}