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.sys.web.dddumper;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  
21  public class DataDictionaryDumperSection{
22  	protected static final long serialVersionUID = 3632283509506923869L;
23  
24  	protected String docName = "";
25  	protected String docId = "";
26  	protected String businessObject = "";
27  	protected String businessObjectRulesClass = "";
28  	protected String documentAuthorizerClass = "";
29  	protected String table = "";
30  	protected boolean collection = false;
31  	protected List<DataDictionaryDumperDocumentRow> documentRows = new ArrayList<DataDictionaryDumperDocumentRow>();
32  
33  	public String getDocName() {
34  		return docName;
35  	}
36  	public void setDocName(String docName) {
37  		this.docName = docName;
38  	}
39  	public boolean isCollection() {
40  		return collection;
41  	}
42  	public void setCollection(boolean collection) {
43  		this.collection = collection;
44  	}
45  	public String getDocId() {
46  		return docId;
47  	}
48  	public void setDocId(String docId) {
49  		this.docId = docId;
50  	}
51  	public String getBusinessObject() {
52  		return businessObject;
53  	}
54  	public void setBusinessObject(String businessObject) {
55  		this.businessObject = businessObject;
56  	}
57  	public String getBusinessObjectRulesClass() {
58  		return businessObjectRulesClass;
59  	}
60  	public void setBusinessObjectRulesClass(String businessObjectRulesClass) {
61  		this.businessObjectRulesClass = businessObjectRulesClass;
62  	}
63  	public String getDocumentAuthorizerClass() {
64  		return documentAuthorizerClass;
65  	}
66  	public void setDocumentAuthorizerClass(String documentAuthorizerClass) {
67  		this.documentAuthorizerClass = documentAuthorizerClass;
68  	}
69  	public String getTable() {
70  		return table;
71  	}
72  	public void setTable(String table) {
73  		this.table = table;
74  	}
75  	public List<DataDictionaryDumperDocumentRow> getDocumentRows() {
76  		return documentRows;
77  	}
78  	public void setDocumentRows(List<DataDictionaryDumperDocumentRow> documentRows) {
79  		this.documentRows = documentRows;
80  	}
81  }