View Javadoc

1   package org.kuali.mobility.library.entity;
2   
3   import javax.persistence.Column;
4   import javax.persistence.Entity;
5   import javax.persistence.GeneratedValue;
6   import javax.persistence.GenerationType;
7   import javax.persistence.Id;
8   import javax.persistence.Table;
9   
10  /**
11   * A class representing an hour period
12   * @author Kuali Mobility Team (mobility.collab@kuali.org)
13   * @since 2.3.0
14   */
15  @Entity
16  @Table(name="LIBRARY_HOUR_PERIOD")
17  public class LibraryHourPeriod {
18  
19  	/**
20  	 * ID
21  	 */
22  	@Id
23  	@GeneratedValue(strategy = GenerationType.TABLE)
24  	@Column(name="ID")
25  	private Long id;
26  	
27  	/**
28  	 * Localisable label
29  	 */
30  	@Column(name="LABEL")
31  	private String label;
32  	
33  	/**
34  	 * On some UI the order in which periods are displayed is important
35  	 */
36  	@Column(name="ORDR")
37  	private int order;
38  
39  	/**
40  	 * Gets the id for this <code>LibraryHourPeriod</code>.
41  	 * @return the id
42  	 */
43  	public Long getId() {
44  		return id;
45  	}
46  
47  	/**
48  	 * Sets the id for this <code>LibraryHourPeriod</code>.
49  	 * @param id the id to set
50  	 */
51  	public void setId(Long id) {
52  		this.id = id;
53  	}
54  
55  	/**
56  	 * Gets the label for this <code>LibraryHourPeriod</code>.
57  	 * @return the label
58  	 */
59  	public String getLabel() {
60  		return label;
61  	}
62  
63  	/**
64  	 * Sets the label for this <code>LibraryHourPeriod</code>.
65  	 * @param label the label to set
66  	 */
67  	public void setLabel(String label) {
68  		this.label = label;
69  	}
70  
71  	/**
72  	 * Gets the order for this <code>LibraryHourPeriod</code>.
73  	 * @return the order
74  	 */
75  	public int getOrder() {
76  		return order;
77  	}
78  
79  	/**
80  	 * Sets the order for this <code>LibraryHourPeriod</code>.
81  	 * @param order the order to set
82  	 */
83  	public void setOrder(int order) {
84  		this.order = order;
85  	}
86  	
87  }