View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    *
4    * Copyright 2005-2014 The Kuali Foundation
5    *
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   *
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   *
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  
20  package org.kuali.kfs.integration.cg;
21  
22  import org.kuali.rice.kim.api.identity.Person;
23  import org.kuali.rice.krad.bo.ExternalizableBusinessObject;
24  
25  
26  
27  /**
28   * This interface defines all the necessary methods to define a Contracts & Grants project director object.
29   */
30  public interface ContractsAndGrantsProjectDirector extends ExternalizableBusinessObject {
31  
32      /**
33       * Gets the principalId attribute.
34       *
35       * @return Returns the principalId
36       */
37      public String getPrincipalId();
38  
39      /**
40       * Sets the principalId attribute.
41       *
42       * @param principalId The principalId to set.
43       */
44      public void setPrincipalId(String principalId);
45  
46      /**
47       * Gets the proposalNumber attribute.
48       *
49       * @return Returns the proposalNumber
50       */
51      public Long getProposalNumber();
52  
53      /**
54       * Sets the proposalNumber attribute.
55       *
56       * @param proposalNumber The proposalNumber to set.
57       */
58      public void setProposalNumber(Long proposalNumber);
59  
60      /**
61       * Gets the project director attribute.
62       *
63       * @return the projectDirector.
64       */
65      public Person getProjectDirector();
66  
67      /**
68       * Sets the projectDirector.
69       *
70       * @param projectDirector the projectDirector to set
71       * @deprecated required by PersonServiceImpl.isPersonProperty() for PojoPropertyUtilsBean.getPropertyDescriptor()
72       */
73      @Deprecated
74      public void setProjectDirector(Person projectDirector);
75  
76  }