01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/osp/tags/sakai_2-4-1/presentation/api/src/java/org/theospi/portfolio/presentation/model/PresentationPageItem.java $
03: * $Id: PresentationPageItem.java 10835 2006-06-17 03:25:03Z lance@indiana.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 2005, 2006 The Sakai Foundation.
07: *
08: * Licensed under the Educational Community License, Version 1.0 (the "License");
09: * you may not use this file except in compliance with the License.
10: * You may obtain a copy of the License at
11: *
12: * http://www.opensource.org/licenses/ecl1.php
13: *
14: * Unless required by applicable law or agreed to in writing, software
15: * distributed under the License is distributed on an "AS IS" BASIS,
16: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17: * See the License for the specific language governing permissions and
18: * limitations under the License.
19: *
20: **********************************************************************************/package org.theospi.portfolio.presentation.model;
21:
22: import java.io.Serializable;
23: import java.util.Set;
24:
25: import org.sakaiproject.metaobj.shared.model.Id;
26: import org.sakaiproject.metaobj.shared.model.IdentifiableObject;
27:
28: public class PresentationPageItem extends IdentifiableObject implements
29: Serializable {
30:
31: private Id id;
32: private PresentationPageRegion region;
33: private String layoutRegionId;
34: private int regionItemSeq;
35: private String type;
36: private String value;
37: private Set properties;
38:
39: public Id getId() {
40: return id;
41: }
42:
43: public void setId(Id id) {
44: this .id = id;
45: }
46:
47: public String getLayoutRegionId() {
48: return layoutRegionId;
49: }
50:
51: public void setLayoutRegionId(String layoutRegionId) {
52: this .layoutRegionId = layoutRegionId;
53: }
54:
55: public PresentationPageRegion getRegion() {
56: return region;
57: }
58:
59: public void setRegion(PresentationPageRegion region) {
60: this .region = region;
61: }
62:
63: public Set getProperties() {
64: return properties;
65: }
66:
67: public void setProperties(Set properties) {
68: this .properties = properties;
69: }
70:
71: public int getRegionItemSeq() {
72: return regionItemSeq;
73: }
74:
75: public void setRegionItemSeq(int regionItemSeq) {
76: this .regionItemSeq = regionItemSeq;
77: }
78:
79: public String getType() {
80: return type;
81: }
82:
83: public void setType(String type) {
84: this .type = type;
85: }
86:
87: public String getValue() {
88: return value;
89: }
90:
91: public void setValue(String value) {
92: this.value = value;
93: }
94:
95: }
|