Class AbstractImportable
- java.lang.Object
-
- org.sakaiproject.importer.impl.importables.AbstractImportable
-
- All Implemented Interfaces:
HasSequence,Importable
- Direct Known Subclasses:
Announcement,Assessment,AssessmentAnswer,AssessmentQuestion,DiscussionTopic,FileResource,Folder,HtmlDocument,TextDocument,WebLink
public abstract class AbstractImportable extends Object implements Importable, HasSequence
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcontextPathprotected Stringguidprotected StringlegacyGroupprotected Importableparentprotected intsequenceNum
-
Constructor Summary
Constructors Constructor Description AbstractImportable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContextPath()StringgetGuid()StringgetLegacyGroup()ImportablegetParent()intgetSequenceNum()voidsetContextPath(String contextPath)voidsetGuid(String guid)voidsetLegacyGroup(String legacyGroup)voidsetParent(Importable parent)voidsetSequenceNum(int sequenceNum)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sakaiproject.importer.api.Importable
getTypeName
-
-
-
-
Field Detail
-
guid
protected String guid
-
legacyGroup
protected String legacyGroup
-
contextPath
protected String contextPath
-
parent
protected Importable parent
-
sequenceNum
protected int sequenceNum
-
-
Method Detail
-
getSequenceNum
public int getSequenceNum()
- Specified by:
getSequenceNumin interfaceHasSequence
-
setSequenceNum
public void setSequenceNum(int sequenceNum)
-
getParent
public Importable getParent()
- Specified by:
getParentin interfaceImportable
-
setParent
public void setParent(Importable parent)
- Specified by:
setParentin interfaceImportable
-
getGuid
public String getGuid()
- Specified by:
getGuidin interfaceImportable
-
setGuid
public void setGuid(String guid)
-
getLegacyGroup
public String getLegacyGroup()
- Specified by:
getLegacyGroupin interfaceImportable
-
setLegacyGroup
public void setLegacyGroup(String legacyGroup)
- Specified by:
setLegacyGroupin interfaceImportable
-
getContextPath
public String getContextPath()
- Specified by:
getContextPathin interfaceImportable
-
setContextPath
public void setContextPath(String contextPath)
- Specified by:
setContextPathin interfaceImportable
-
-