| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.kuali.rice.kew.export; |
| 18 | |
|
| 19 | |
import java.util.ArrayList; |
| 20 | |
import java.util.List; |
| 21 | |
|
| 22 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
| 23 | |
import org.kuali.rice.kew.edl.bo.EDocLiteAssociation; |
| 24 | |
import org.kuali.rice.kew.edl.bo.EDocLiteStyle; |
| 25 | |
import org.kuali.rice.kew.help.HelpEntry; |
| 26 | |
import org.kuali.rice.kew.rule.RuleBaseValues; |
| 27 | |
import org.kuali.rice.kew.rule.RuleDelegation; |
| 28 | |
import org.kuali.rice.kew.rule.bo.RuleAttribute; |
| 29 | |
import org.kuali.rice.kew.rule.bo.RuleTemplate; |
| 30 | |
import org.kuali.rice.kim.bo.Group; |
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | 0 | public class ExportDataSet { |
| 39 | |
|
| 40 | 0 | private List<DocumentType> documentTypes = new ArrayList<DocumentType>(); |
| 41 | 0 | private List<Group> groups = new ArrayList<Group>(); |
| 42 | 0 | private List<RuleAttribute> ruleAttributes = new ArrayList<RuleAttribute>(); |
| 43 | 0 | private List<RuleTemplate> ruleTemplates = new ArrayList<RuleTemplate>(); |
| 44 | 0 | private List<RuleBaseValues> rules = new ArrayList<RuleBaseValues>(); |
| 45 | 0 | private List<RuleDelegation> ruleDelegations = new ArrayList<RuleDelegation>(); |
| 46 | 0 | private List<HelpEntry> help = new ArrayList<HelpEntry>(); |
| 47 | 0 | private List<EDocLiteAssociation> edocLites = new ArrayList<EDocLiteAssociation>(); |
| 48 | 0 | private List<EDocLiteStyle> styles = new ArrayList<EDocLiteStyle>(); |
| 49 | |
|
| 50 | |
public List<DocumentType> getDocumentTypes() { |
| 51 | 0 | return documentTypes; |
| 52 | |
} |
| 53 | |
public List<HelpEntry> getHelp() { |
| 54 | 0 | return help; |
| 55 | |
} |
| 56 | |
public List<EDocLiteStyle> getStyles() { |
| 57 | 0 | return styles; |
| 58 | |
} |
| 59 | |
public List<RuleAttribute> getRuleAttributes() { |
| 60 | 0 | return ruleAttributes; |
| 61 | |
} |
| 62 | |
public List<RuleBaseValues> getRules() { |
| 63 | 0 | return rules; |
| 64 | |
} |
| 65 | |
public List<RuleTemplate> getRuleTemplates() { |
| 66 | 0 | return ruleTemplates; |
| 67 | |
} |
| 68 | |
public List<EDocLiteAssociation> getEdocLites() { |
| 69 | 0 | return edocLites; |
| 70 | |
} |
| 71 | |
public List<Group> getGroups() { |
| 72 | 0 | return this.groups; |
| 73 | |
} |
| 74 | |
public void setGroups(List<Group> groups) { |
| 75 | 0 | this.groups = groups; |
| 76 | 0 | } |
| 77 | |
public List<RuleDelegation> getRuleDelegations() { |
| 78 | 0 | return this.ruleDelegations; |
| 79 | |
} |
| 80 | |
|
| 81 | |
} |