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/PartStructure.java $
05: * $Id: PartStructure.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 PartStructure implements
26: org.osid.repository.PartStructure {
27: public String getDisplayName()
28: throws org.osid.repository.RepositoryException {
29: throw new org.osid.repository.RepositoryException(
30: org.osid.OsidException.UNIMPLEMENTED);
31: }
32:
33: public String getDescription()
34: throws org.osid.repository.RepositoryException {
35: throw new org.osid.repository.RepositoryException(
36: org.osid.OsidException.UNIMPLEMENTED);
37: }
38:
39: public boolean isMandatory()
40: throws org.osid.repository.RepositoryException {
41: throw new org.osid.repository.RepositoryException(
42: org.osid.OsidException.UNIMPLEMENTED);
43: }
44:
45: public boolean isPopulatedByRepository()
46: throws org.osid.repository.RepositoryException {
47: throw new org.osid.repository.RepositoryException(
48: org.osid.OsidException.UNIMPLEMENTED);
49: }
50:
51: public boolean isRepeatable()
52: throws org.osid.repository.RepositoryException {
53: throw new org.osid.repository.RepositoryException(
54: org.osid.OsidException.UNIMPLEMENTED);
55: }
56:
57: protected PartStructure() {
58: }
59:
60: public void updateDisplayName(String displayName)
61: throws org.osid.repository.RepositoryException {
62: throw new org.osid.repository.RepositoryException(
63: org.osid.OsidException.UNIMPLEMENTED);
64: }
65:
66: public org.osid.shared.Id getId()
67: throws org.osid.repository.RepositoryException {
68: throw new org.osid.repository.RepositoryException(
69: org.osid.OsidException.UNIMPLEMENTED);
70: }
71:
72: public org.osid.shared.Type getType()
73: throws org.osid.repository.RepositoryException {
74: throw new org.osid.repository.RepositoryException(
75: org.osid.OsidException.UNIMPLEMENTED);
76: }
77:
78: public org.osid.repository.RecordStructure getRecordStructure()
79: throws org.osid.repository.RepositoryException {
80: throw new org.osid.repository.RepositoryException(
81: org.osid.OsidException.UNIMPLEMENTED);
82: }
83:
84: public boolean validatePart(org.osid.repository.Part part)
85: throws org.osid.repository.RepositoryException {
86: throw new org.osid.repository.RepositoryException(
87: org.osid.OsidException.UNIMPLEMENTED);
88: }
89:
90: public org.osid.repository.PartStructureIterator getPartStructures()
91: throws org.osid.repository.RepositoryException {
92: throw new org.osid.repository.RepositoryException(
93: org.osid.OsidException.UNIMPLEMENTED);
94: }
95: }
|