01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/osp/tags/sakai_2-4-1/integration/api-impl/src/java/org/theospi/portfolio/admin/service/ToolOption.java $
03: * $Id: ToolOption.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.apache.commons.logging.Log;
23: import org.apache.commons.logging.LogFactory;
24:
25: import java.util.Map;
26:
27: public class ToolOption {
28: protected final transient Log logger = LogFactory
29: .getLog(getClass());
30:
31: private String toolId;
32: private Map initProperties;
33: private String title;
34: private String layoutHints = "0,0";
35:
36: public Map getInitProperties() {
37: return initProperties;
38: }
39:
40: public void setInitProperties(Map initProperties) {
41: this .initProperties = initProperties;
42: }
43:
44: public String getToolId() {
45: return toolId;
46: }
47:
48: public void setToolId(String toolId) {
49: this .toolId = toolId;
50: }
51:
52: public String getTitle() {
53: return title;
54: }
55:
56: public void setTitle(String title) {
57: this .title = title;
58: }
59:
60: public String getLayoutHints() {
61: return layoutHints;
62: }
63:
64: public void setLayoutHints(String layoutHints) {
65: this.layoutHints = layoutHints;
66: }
67: }
|