01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/osp/tags/sakai_2-4-1/integration/api-impl/src/java/org/theospi/portfolio/admin/service/ToolWrapper.java $
03: * $Id: ToolWrapper.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.sakaiproject.tool.api.Tool;
23:
24: import java.util.Properties;
25: import java.util.Set;
26:
27: /**
28: * Created by IntelliJ IDEA.
29: * User: John Ellis
30: * Date: Mar 2, 2006
31: * Time: 4:37:02 PM
32: * To change this template use File | Settings | File Templates.
33: */
34: public class ToolWrapper implements Tool {
35:
36: private String id;
37:
38: public ToolWrapper(String id) {
39: this .id = id;
40: }
41:
42: public String getId() {
43: return id;
44: }
45:
46: public String getTitle() {
47: return null;
48: }
49:
50: public String getDescription() {
51: return null;
52: }
53:
54: public String getHome() {
55: return null;
56: }
57:
58: public Properties getRegisteredConfig() {
59: return null;
60: }
61:
62: public Properties getMutableConfig() {
63: return null;
64: }
65:
66: public Properties getFinalConfig() {
67: return null;
68: }
69:
70: public Set getKeywords() {
71: return null;
72: }
73:
74: public Set getCategories() {
75: return null;
76: }
77:
78: public AccessSecurity getAccessSecurity() {
79: return null;
80: }
81: }
|