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.module.external.kc.businessobject;
21  
22  import java.io.Serializable;
23  
24  import javax.xml.bind.annotation.XmlAccessType;
25  import javax.xml.bind.annotation.XmlAccessorType;
26  import javax.xml.bind.annotation.XmlType;
27  
28  import org.kuali.kfs.integration.cg.ContractsAndGrantsCfda;
29  
30  
31  /**
32   * <p>Java class for cfdaDTO complex type.
33   * 
34   * <p>The following schema fragment specifies the expected content contained within this class.
35   * 
36   * <pre>
37   * &lt;complexType name="cfdaDTO">
38   *   &lt;complexContent>
39   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
40   *       &lt;sequence>
41   *         &lt;element name="active" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
42   *         &lt;element name="awardId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
43   *         &lt;element name="cfdaMaintenanceTypeId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
44   *         &lt;element name="cfdaNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
45   *         &lt;element name="cfdaProgramTitleName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
46   *       &lt;/sequence>
47   *     &lt;/restriction>
48   *   &lt;/complexContent>
49   * &lt;/complexType>
50   * </pre>
51   * 
52   * 
53   */
54  @XmlAccessorType(XmlAccessType.FIELD)
55  @XmlType(name = "cfdaDTO", propOrder = {
56      "active",
57      "awardId",
58      "cfdaMaintenanceTypeId",
59      "cfdaNumber",
60      "cfdaProgramTitleName"
61  })
62  public class CfdaDTO implements ContractsAndGrantsCfda, Serializable {
63  
64      protected boolean active;
65      protected String awardId;
66      protected String cfdaMaintenanceTypeId;
67      protected String cfdaNumber;
68      protected String cfdaProgramTitleName;
69  
70      /**
71       * Gets the value of the active property.
72       * 
73       */
74      public boolean isActive() {
75          return active;
76      }
77  
78      /**
79       * Sets the value of the active property.
80       * 
81       */
82      public void setActive(boolean value) {
83          this.active = value;
84      }
85  
86      /**
87       * Gets the value of the awardId property.
88       * 
89       * @return
90       *     possible object is
91       *     {@link String }
92       *     
93       */
94      public String getAwardId() {
95          return awardId;
96      }
97  
98      /**
99       * Sets the value of the awardId property.
100      * 
101      * @param value
102      *     allowed object is
103      *     {@link String }
104      *     
105      */
106     public void setAwardId(String value) {
107         this.awardId = value;
108     }
109 
110     /**
111      * Gets the value of the cfdaMaintenanceTypeId property.
112      * 
113      * @return
114      *     possible object is
115      *     {@link String }
116      *     
117      */
118     public String getCfdaMaintenanceTypeId() {
119         return cfdaMaintenanceTypeId;
120     }
121 
122     /**
123      * Sets the value of the cfdaMaintenanceTypeId property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link String }
128      *     
129      */
130     public void setCfdaMaintenanceTypeId(String value) {
131         this.cfdaMaintenanceTypeId = value;
132     }
133 
134     /**
135      * Gets the value of the cfdaNumber property.
136      * 
137      * @return
138      *     possible object is
139      *     {@link String }
140      *     
141      */
142     public String getCfdaNumber() {
143         return cfdaNumber;
144     }
145 
146     /**
147      * Sets the value of the cfdaNumber property.
148      * 
149      * @param value
150      *     allowed object is
151      *     {@link String }
152      *     
153      */
154     public void setCfdaNumber(String value) {
155         this.cfdaNumber = value;
156     }
157 
158     /**
159      * Gets the value of the cfdaProgramTitleName property.
160      * 
161      * @return
162      *     possible object is
163      *     {@link String }
164      *     
165      */
166     public String getCfdaProgramTitleName() {
167         return cfdaProgramTitleName;
168     }
169 
170     /**
171      * Sets the value of the cfdaProgramTitleName property.
172      * 
173      * @param value
174      *     allowed object is
175      *     {@link String }
176      *     
177      */
178     public void setCfdaProgramTitleName(String value) {
179         this.cfdaProgramTitleName = value;
180     }
181 
182     @Override
183     public void refresh() {}
184 
185 }