View Javadoc
1   /*
2    * Copyright 2011 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.ole.vnd.businessobject;
17  
18  import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
19  import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
20  
21  public class OleVendorTransmissionFormat extends PersistableBusinessObjectBase implements MutableInactivatable {
22  
23      private Long vendorTransmissionFormatId;
24  
25      private String vendorTransmissionFormat;
26  
27      private boolean active;
28      @Override
29      public boolean isActive() {
30  
31          return active;
32      }
33  
34      @Override
35      public void setActive(boolean active) {
36         this.active=active;
37  
38      }
39  
40      public Long getVendorTransmissionFormatId() {
41          return vendorTransmissionFormatId;
42      }
43  
44      public void setVendorTransmissionFormatId(Long vendorTransmissionFormatId) {
45          this.vendorTransmissionFormatId = vendorTransmissionFormatId;
46      }
47  
48      public String getVendorTransmissionFormat() {
49          return vendorTransmissionFormat;
50      }
51  
52      public void setVendorTransmissionFormat(String vendorTransmissionFormat) {
53          this.vendorTransmissionFormat = vendorTransmissionFormat;
54      }
55  
56  }