01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/osp/tags/sakai_2-4-1/integration/api-impl/src/java/org/theospi/portfolio/admin/service/SiteOption.java $
03: * $Id: SiteOption.java 11372 2006-06-29 14:58:30Z chmaurer@iupui.edu $
04: ***********************************************************************************
05: *
06: * Copyright (c) 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.admin.service;
21:
22: import org.theospi.portfolio.admin.model.IntegrationOption;
23:
24: /**
25: * Created by IntelliJ IDEA.
26: * User: John Ellis
27: * Date: Mar 2, 2006
28: * Time: 11:41:17 AM
29: * To change this template use File | Settings | File Templates.
30: */
31: public class SiteOption extends IntegrationOption {
32:
33: private String siteId;
34: private String siteType;
35: private String realmTemplate;
36:
37: private String siteTitle;
38: private String siteDescription;
39:
40: public String getSiteId() {
41: return siteId;
42: }
43:
44: public void setSiteId(String siteId) {
45: this .siteId = siteId;
46: }
47:
48: public String getSiteType() {
49: return siteType;
50: }
51:
52: public void setSiteType(String siteType) {
53: this .siteType = siteType;
54: }
55:
56: public String getRealmTemplate() {
57: return realmTemplate;
58: }
59:
60: public void setRealmTemplate(String realmTemplate) {
61: this .realmTemplate = realmTemplate;
62: }
63:
64: public String getSiteTitle() {
65: return siteTitle;
66: }
67:
68: public void setSiteTitle(String siteTitle) {
69: this .siteTitle = siteTitle;
70: }
71:
72: public String getSiteDescription() {
73: return siteDescription;
74: }
75:
76: public void setSiteDescription(String siteDescription) {
77: this.siteDescription = siteDescription;
78: }
79:
80: }
|