01: /**********************************************************************************
02: * $URL: https://source.sakaiproject.org/svn/archive/tags/sakai_2-4-1/archive-api/api/src/java/org/sakaiproject/archive/api/ImportMetadata.java $
03: * $Id: ImportMetadata.java 7947 2006-04-19 03:14:11Z ggolden@umich.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.sakaiproject.archive.api;
21:
22: /**
23: * ...
24: */
25: public interface ImportMetadata {
26: /**
27: * @return
28: */
29: public String getId();
30:
31: /**
32: * @param id
33: */
34: public void setId(String id);
35:
36: /**
37: * @return Returns the fileName.
38: */
39: public String getFileName();
40:
41: /**
42: * @param fileName
43: * The fileName to set.
44: */
45: public void setFileName(String fileName);
46:
47: /**
48: * @return Returns the legacyTool.
49: */
50: public String getLegacyTool();
51:
52: /**
53: * @param legacyTool
54: * The legacyTool to set.
55: */
56: public void setLegacyTool(String legacyTool);
57:
58: /**
59: * @return Returns the mandatory.
60: */
61: public boolean isMandatory();
62:
63: /**
64: * @param mandatory
65: * The mandatory to set.
66: */
67: public void setMandatory(boolean mandatory);
68:
69: /**
70: * @return Returns the sakaiServiceName.
71: */
72: public String getSakaiServiceName();
73:
74: /**
75: * @param sakaiServiceName
76: * The sakaiServiceName to set.
77: */
78: public void setSakaiServiceName(String sakaiServiceName);
79:
80: /**
81: * @return Returns the sakaiTool.
82: */
83: public String getSakaiTool();
84:
85: /**
86: * @param sakaiTool
87: * The sakaiTool to set.
88: */
89: public void setSakaiTool(String sakaiTool);
90: }
|