View Javadoc
1   package org.kuali.ole.docstore.common.document.config;
2   
3   /**
4    * Created with IntelliJ IDEA.
5    * User: chandrasekharag
6    * Date: 4/3/14
7    * Time: 6:08 PM
8    * To change this template use File | Settings | File Templates.
9    */
10  public class DocFieldConfig extends ConfigDocument {
11  
12      private String includePath;
13      private String excludePath;
14      private boolean searchable;
15      private boolean displayable;
16      private boolean globallyEditable;
17      private boolean exportable;
18      private boolean facet;
19      private Integer docTypeId;
20      private Integer docFormatId;
21      private DocTypeConfig docType;
22      private DocFormatConfig docFormat;
23  
24      public DocTypeConfig getDocType() {
25          return docType;
26      }
27  
28      public void setDocType(DocTypeConfig docType) {
29          this.docType = docType;
30      }
31  
32      public DocFormatConfig getDocFormat() {
33          return docFormat;
34      }
35  
36      public void setDocFormat(DocFormatConfig docFormat) {
37          this.docFormat = docFormat;
38      }
39  
40      public Integer getDocTypeId() {
41          return docTypeId;
42      }
43  
44      public void setDocTypeId(Integer docTypeId) {
45          this.docTypeId = docTypeId;
46      }
47  
48      public Integer getDocFormatId() {
49          return docFormatId;
50      }
51  
52      public void setDocFormatId(Integer docFormatId) {
53          this.docFormatId = docFormatId;
54      }
55  
56      public String getIncludePath() {
57          return includePath;
58      }
59  
60      public void setIncludePath(String includePath) {
61          this.includePath = includePath;
62      }
63  
64      public String getExcludePath() {
65          return excludePath;
66      }
67  
68      public void setExcludePath(String excludePath) {
69          this.excludePath = excludePath;
70      }
71  
72      public boolean isSearchable() {
73          return searchable;
74      }
75  
76      public void setSearchable(boolean searchable) {
77          this.searchable = searchable;
78      }
79  
80      public boolean isDisplayable() {
81          return displayable;
82      }
83  
84      public void setDisplayable(boolean displayable) {
85          this.displayable = displayable;
86      }
87  
88      public boolean isGloballyEditable() {
89          return globallyEditable;
90      }
91  
92      public void setGloballyEditable(boolean globallyEditable) {
93          this.globallyEditable = globallyEditable;
94      }
95  
96      public boolean isExportable() {
97          return exportable;
98      }
99  
100     public void setExportable(boolean exportable) {
101         this.exportable = exportable;
102     }
103 
104     public boolean isFacet() {
105         return facet;
106     }
107 
108     public void setFacet(boolean facet) {
109         this.facet = facet;
110     }
111 }