Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AtpMilestoneRelationEntity |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2007 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community License, Version 1.0 (the "License"); | |
5 | * you may not use this file except in compliance with the License. | |
6 | * You may obtain a copy of the License at | |
7 | * | |
8 | * http://www.opensource.org/licenses/ecl1.php | |
9 | * | |
10 | * Unless required by applicable law or agreed to in writing, software | |
11 | * distributed under the License is distributed on an "AS IS" BASIS, | |
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
13 | * See the License for the specific language governing permissions and | |
14 | * limitations under the License. | |
15 | */ | |
16 | package org.kuali.student.r2.core.class1.atp.model; | |
17 | ||
18 | ||
19 | ||
20 | import javax.persistence.Column; | |
21 | import javax.persistence.Entity; | |
22 | import javax.persistence.Table; | |
23 | ||
24 | import org.kuali.student.r2.common.entity.MetaEntity; | |
25 | ||
26 | @Entity | |
27 | @Table(name = "KSEN_ATPMSTONE_RELTN") | |
28 | public class AtpMilestoneRelationEntity extends MetaEntity { | |
29 | @Column(name="ATP_ID") | |
30 | private String atpId; | |
31 | ||
32 | @Column(name="MSTONE_ID") | |
33 | private String milestoneId; | |
34 | ||
35 | 0 | public AtpMilestoneRelationEntity() { |
36 | 0 | } |
37 | ||
38 | public String getAtpId() { | |
39 | 0 | return atpId; |
40 | } | |
41 | ||
42 | public void setAtpId(String atpId) { | |
43 | 0 | this.atpId = atpId; |
44 | 0 | } |
45 | ||
46 | public String getMilestoneId() { | |
47 | 0 | return milestoneId; |
48 | } | |
49 | ||
50 | public void setMilestoneId(String milestoneId) { | |
51 | 0 | this.milestoneId = milestoneId; |
52 | 0 | } |
53 | } |