Package org.pentaho.di.repository
Interface RepositoryElementMetaInterface
-
- All Superinterfaces:
RepositoryObjectInterface
public interface RepositoryElementMetaInterface extends RepositoryObjectInterface
The RepositoryElementMetaInterface is used to provide metadata about repository elements without requiring loading the entire element from the repository.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Date
getModifiedDate()
String
getModifiedUser()
RepositoryObjectType
getObjectType()
RepositoryDirectoryInterface
getRepositoryDirectory()
boolean
isDeleted()
void
setName(String name)
-
Methods inherited from interface org.pentaho.di.repository.RepositoryObjectInterface
getName, getObjectId
-
-
-
-
Method Detail
-
getModifiedDate
Date getModifiedDate()
-
getModifiedUser
String getModifiedUser()
-
getObjectType
RepositoryObjectType getObjectType()
-
getDescription
String getDescription()
-
isDeleted
boolean isDeleted()
-
setName
void setName(String name)
-
getRepositoryDirectory
RepositoryDirectoryInterface getRepositoryDirectory()
-
-