BrightSide Workbench Full Report + Source Code
Schedule.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2011 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 package org.turro.erp.entity;
19 
20 import org.turro.erp.entity.MaintenancePlan;
21 import javax.persistence.Column;
22 import javax.persistence.Entity;
23 import javax.persistence.GeneratedValue;
24 import javax.persistence.GenerationType;
25 import javax.persistence.Id;
26 import javax.persistence.ManyToOne;
27 
32 @Entity
33 public class Schedule implements java.io.Serializable {
34 
35  @Id
36  @GeneratedValue(strategy=GenerationType.IDENTITY)
37  @Column(name="IDENTIFIER")
38  private long id;
39 
40  @Column(name="SCHEDULE_NAME", unique = true, nullable = false)
41  private String name;
42 
43  private boolean months[] = new boolean[12]; // 1, 2, ...
44 
45  private boolean daysOfMonth[] = new boolean[31]; // 1, 2, ...
46 
47  private boolean daysOfWeek[] = new boolean[7]; // 0, 1, ...
48 
49  private boolean hours[] = new boolean[24]; // 0, 1, ...
50 
51  private boolean minutes[] = new boolean[12]; // 0, 5, ...
52 
53  private boolean daily = false;
54 
55  @ManyToOne
56  private MaintenancePlan maintenancePlan;
57 
58 }