Package org.sakaiproject.importer.api
Interface Importable
-
public interface ImportableImportables are extracted as a collection by a parser, and passed one at a time to one or more handlers to be added to Sakai.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetContextPath()StringgetGuid()StringgetLegacyGroup()ImportablegetParent()StringgetTypeName()Get the type for this importable.voidsetContextPath(String path)voidsetLegacyGroup(String legacyGroup)voidsetParent(Importable parent)
-
-
-
Method Detail
-
getGuid
String getGuid()
-
getTypeName
String getTypeName()
Get the type for this importable.- Returns:
- A String type, this is used for deciding which handler to use.
-
getLegacyGroup
String getLegacyGroup()
-
getContextPath
String getContextPath()
-
getParent
Importable getParent()
-
setParent
void setParent(Importable parent)
-
setLegacyGroup
void setLegacyGroup(String legacyGroup)
-
setContextPath
void setContextPath(String path)
-
-