1 package org.exoplatform.services.wcm.extensions.publication.context.impl;
2
3 import java.util.List;
4
5
6
7
8
9 public class ContextConfig {
10 private List<Context> contexts;
11
12 public List<Context> getContexts() {
13 return contexts;
14 }
15
16 public void setContexts(List<Context> contexts) {
17 this.contexts = contexts;
18 }
19
20 public static class Context {
21 private String name;
22 private String priority;
23 private String lifecycle;
24 private String membership;
25 private List<String> memberships;
26
27 private String path;
28 private String nodetype;
29 private String site;
30
31 public String getName() {
32 return name;
33 }
34
35 public void setName(String name) {
36 this.name = name;
37 }
38
39 public String getPriority() {
40 return priority;
41 }
42
43 public void setPriority(String priority) {
44 this.priority = priority;
45 }
46
47 public String getLifecycle() {
48 return lifecycle;
49 }
50
51 public void setLifecycle(String lifecycle) {
52 this.lifecycle = lifecycle;
53 }
54
55 public String getMembership() {
56 return membership;
57 }
58
59 public void setMembership(String membership) {
60 this.membership = membership;
61 }
62
63 public String getPath() {
64 return path;
65 }
66
67 public void setPath(String path) {
68 this.path = path;
69 }
70
71 public String getNodetype() {
72 return nodetype;
73 }
74
75 public void setNodetype(String nodetype) {
76 this.nodetype = nodetype;
77 }
78
79 public String getSite() {
80 return site;
81 }
82
83 public void setSite(String site) {
84 this.site = site;
85 }
86
87 public List<String> getMemberships() {
88 return memberships;
89 }
90
91 public void setMemberships(List<String> memberships) {
92 this.memberships = memberships;
93 }
94
95 }
96 }