01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
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:
17: package org.kuali.module.cg.bo;
18:
19: /**
20: * This interface defines all the necessary methods to define a contracts and grants project director object.
21: */
22: public interface CGProjectDirector {
23:
24: /**
25: * Gets the personUniversalIdentifier attribute.
26: *
27: * @return Returns the personUniversalIdentifier
28: */
29: public String getPersonUniversalIdentifier();
30:
31: /**
32: * Sets the personUniversalIdentifier attribute.
33: *
34: * @param personUniversalIdentifier The personUniversalIdentifier to set.
35: */
36: public void setPersonUniversalIdentifier(
37: String personUniversalIdentifier);
38:
39: /**
40: * Gets the proposalNumber attribute.
41: *
42: * @return Returns the proposalNumber
43: */
44: public Long getProposalNumber();
45:
46: /**
47: * Sets the proposalNumber attribute.
48: *
49: * @param proposalNumber The proposalNumber to set.
50: */
51: public void setProposalNumber(Long proposalNumber);
52:
53: /**
54: * Gets the project director attribute.
55: *
56: * @return the projectDirector.
57: */
58: public ProjectDirector getProjectDirector();
59:
60: /**
61: * Sets the projectDirector.
62: *
63: * @param projectDirector the projectDirector to set
64: * @deprecated required by UniversalUserServiceImpl.isUniversalUserProperty() for PojoPropertyUtilsBean.getPropertyDescriptor()
65: */
66: public void setProjectDirector(ProjectDirector projectDirector);
67:
68: }
|