1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.select.businessobject;
17
18 import org.kuali.rice.core.api.mo.common.active.Inactivatable;
19 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
20
21 import java.math.BigDecimal;
22 import java.util.LinkedHashMap;
23
24 public class OleLoadProfile extends PersistableBusinessObjectBase implements Inactivatable {
25
26 private BigDecimal profileId;
27 private String profile;
28 private boolean active;
29
30 public BigDecimal getProfileId() {
31 return profileId;
32 }
33
34 public void setProfileId(BigDecimal profileId) {
35 this.profileId = profileId;
36 }
37
38 public String getProfile() {
39 return profile;
40 }
41
42 public void setProfile(String profile) {
43 this.profile = profile;
44 }
45
46 public boolean isActive() {
47 return active;
48 }
49
50 public void setActive(boolean active) {
51 this.active = active;
52 }
53
54
55 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
56
57 return null;
58 }
59
60 }