01: package edu.indiana.lib.osid.base.repository;
02:
03: /**********************************************************************************
04: * $URL: https://source.sakaiproject.org/svn/citations/tags/sakai_2-4-1/citations-osid/web2bridge/src/java/edu/indiana/lib/osid/base/repository/Part.java $
05: * $Id: Part.java 22657 2007-03-15 13:21:23Z jimeng@umich.edu $
06: **********************************************************************************
07: *
08: * Copyright (c) 2003, 2004, 2005 The Regents of the University of Michigan, Trustees of Indiana University,
09: * Board of Trustees of the Leland Stanford, Jr., University, and The MIT Corporation
10: *
11: * Licensed under the Educational Community License Version 1.0 (the "License");
12: * By obtaining, using and/or copying this Original Work, you agree that you have read,
13: * understand, and will comply with the terms and conditions of the Educational Community License.
14: * You may obtain a copy of the License at:
15: *
16: * http://cvs.sakaiproject.org/licenses/license_1_0.html
17: *
18: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
19: * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
20: * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
21: * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22: * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23: *
24: **********************************************************************************/
25: public abstract class Part implements org.osid.repository.Part {
26: public String getDisplayName()
27: throws org.osid.repository.RepositoryException {
28: throw new org.osid.repository.RepositoryException(
29: org.osid.OsidException.UNIMPLEMENTED);
30: }
31:
32: public org.osid.shared.Id getId()
33: throws org.osid.repository.RepositoryException {
34: throw new org.osid.repository.RepositoryException(
35: org.osid.OsidException.UNIMPLEMENTED);
36: }
37:
38: public org.osid.repository.Part createPart(
39: org.osid.shared.Id partStructureId,
40: java.io.Serializable value)
41: throws org.osid.repository.RepositoryException {
42: throw new org.osid.repository.RepositoryException(
43: org.osid.OsidException.UNIMPLEMENTED);
44: }
45:
46: public void deletePart(org.osid.shared.Id partStructureId)
47: throws org.osid.repository.RepositoryException {
48: throw new org.osid.repository.RepositoryException(
49: org.osid.OsidException.UNIMPLEMENTED);
50: }
51:
52: public void updateDisplayName(String displayName)
53: throws org.osid.repository.RepositoryException {
54: throw new org.osid.repository.RepositoryException(
55: org.osid.OsidException.UNIMPLEMENTED);
56: }
57:
58: public org.osid.repository.PartIterator getParts()
59: throws org.osid.repository.RepositoryException {
60: throw new org.osid.repository.RepositoryException(
61: org.osid.OsidException.UNIMPLEMENTED);
62: }
63:
64: public org.osid.repository.PartStructure getPartStructure()
65: throws org.osid.repository.RepositoryException {
66: throw new org.osid.repository.RepositoryException(
67: org.osid.OsidException.UNIMPLEMENTED);
68: }
69:
70: public java.io.Serializable getValue()
71: throws org.osid.repository.RepositoryException {
72: throw new org.osid.repository.RepositoryException(
73: org.osid.OsidException.UNIMPLEMENTED);
74: }
75:
76: public void updateValue(java.io.Serializable value)
77: throws org.osid.repository.RepositoryException {
78: throw new org.osid.repository.RepositoryException(
79: org.osid.OsidException.UNIMPLEMENTED);
80: }
81: }
|