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.definitions;
5
 
6
import in.shop2020.metamodel.util.MetaModelComponent;
7
 
8
/**
9
 * 
10
 * @author naveen
11
 *
12
 */
13
public class CategorySlideDefinition extends MetaModelComponent {
14
	/**
15
	 * 
16
	 */
17
	private static final long serialVersionUID = 1L;
18
	private String description;
19
	private long slideDefinitionID;
20
	private EditorialImportance editorialImportance;
21
 
22
	/**
23
	 * 
24
	 * @param categoryID
25
	 * @param slideDefinitionID
26
	 */
32 naveen 27
	public CategorySlideDefinition(long slideDefinitionID) {
10 shop2020 28
		this.slideDefinitionID = slideDefinitionID;
29
	}
30
 
31
	/**
32
	 * 
33
	 * @return description
34
	 */
35
	public String getDescription() {
36
		return this.description;
37
	}
38
 
39
	/**
40
	 * 
41
	 * @param value
42
	 */
43
	public void setDescription(String value) {
44
		this.description = value;
45
	}
46
 
47
	/**
48
	 * 
49
	 * @return slideDefinitionID
50
	 */
51
	public long getSlideDefintionID() {
52
		return this.slideDefinitionID;
53
	}
54
 
55
	/**
56
	 * 
57
	 * @return editorialImportance
58
	 */
59
	public EditorialImportance getEditorialImportance() {
60
		return this.editorialImportance;
61
	}
62
 
63
	/**
64
	 * 
65
	 * @param value
66
	 */
67
	public void setEditorialImportance(EditorialImportance value) {
68
		this.editorialImportance = value;
69
	}
70
 
71
	/* (non-Javadoc)
72
	 * @see java.lang.Object#toString()
73
	 */
74
	@Override
75
	public String toString() {
32 naveen 76
		return "CategorySlideDefinition [description=" + description + 
77
				", editorialImportance=" + editorialImportance + 
78
				", slideDefinitionID=" + slideDefinitionID + "]";
10 shop2020 79
	}
80
 
81
}