001: /**********************************************************************************
002: * $URL: https://source.sakaiproject.org/svn/syllabus/tags/sakai_2-4-1/syllabus-api/src/java/org/sakaiproject/api/app/syllabus/SyllabusData.java $
003: * $Id: SyllabusData.java 8802 2006-05-03 15:06:26Z cwen@iupui.edu $
004: ***********************************************************************************
005: *
006: * Copyright (c) 2003, 2004, 2005, 2006 The Sakai Foundation.
007: *
008: * Licensed under the Educational Community License, Version 1.0 (the "License");
009: * you may not use this file except in compliance with the License.
010: * You may obtain a copy of the License at
011: *
012: * http://www.opensource.org/licenses/ecl1.php
013: *
014: * Unless required by applicable law or agreed to in writing, software
015: * distributed under the License is distributed on an "AS IS" BASIS,
016: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: * See the License for the specific language governing permissions and
018: * limitations under the License.
019: *
020: **********************************************************************************/package org.sakaiproject.api.app.syllabus;
021:
022: import java.util.Set;
023:
024: public interface SyllabusData {
025: /**
026: * @return Returns the emailNotification.
027: */
028: public String getEmailNotification();
029:
030: /**
031: * @param emailNotification The emailNotification to set.
032: */
033: public void setEmailNotification(String emailNotification);
034:
035: /**
036: * @return Returns the status.
037: */
038: public String getStatus();
039:
040: /**
041: * @param status The status to set.
042: */
043: public void setStatus(String status);
044:
045: /**
046: * @return Returns the title.
047: */
048: public String getTitle();
049:
050: /**
051: * @param title The title to set.
052: */
053: public void setTitle(String title);
054:
055: /**
056: * @return Returns the view.
057: */
058: public String getView();
059:
060: /**
061: * @param view The view to set.
062: */
063: public void setView(String view);
064:
065: /**
066: * @return Returns the assetId.
067: */
068: public String getAsset();
069:
070: /**
071: * @param assetId The assetId to set.
072: */
073: public void setAsset(String assetId);
074:
075: /**
076: * @return Returns the lockId.
077: */
078: public Integer getLockId();
079:
080: /**
081: * @return Returns the position.
082: */
083: public Integer getPosition();
084:
085: /**
086: * @param position The position to set.
087: */
088: public void setPosition(Integer position);
089:
090: /**
091: * @return Returns the syllabusId.
092: */
093: public Long getSyllabusId();
094:
095: /**
096: * @return Returns the syllabusItem.
097: */
098: public SyllabusItem getSyllabusItem();
099:
100: /**
101: * @param syllabusItem The syllabusItem to set.
102: */
103: public void setSyllabusItem(SyllabusItem syllabusItem);
104:
105: public Set getAttachments();
106:
107: public void setAttachments(Set attachments);
108: }
|