Package org.pentaho.di.repository
Class ExportFeedback
- java.lang.Object
-
- org.pentaho.di.repository.ExportFeedback
-
public final class ExportFeedback extends Object
This class is used to write export feedback. Usually it is transaction or job export result info. Every time this object is created it gets time created info automatically. Usually every ExportFeedback instance is related with one transformation or job export result. They are organized as a List. In special cases when we want a record not-about job or transformation - we can setisSimpleString()
to true. In this casegetItemName()
will be used as a simple string. Others fields will not be used. To get a String representation of this item call totoString()
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ExportFeedback.Status
static class
ExportFeedback.Type
-
Constructor Summary
Constructors Constructor Description ExportFeedback()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getItemName()
String
getItemPath()
List<ImportValidationFeedback>
getResult()
ExportFeedback.Status
getStatus()
Date
getTime()
ExportFeedback.Type
getType()
int
hashCode()
boolean
isSimpleString()
void
setItemName(String itemName)
void
setItemPath(String itemPath)
void
setResult(List<ImportValidationFeedback> result)
void
setSimpleString(boolean isSimpleString)
void
setStatus(ExportFeedback.Status status)
void
setTime(Date time)
void
setType(ExportFeedback.Type type)
String
toString()
-
-
-
Method Detail
-
getType
public ExportFeedback.Type getType()
-
setType
public void setType(ExportFeedback.Type type)
-
getTime
public Date getTime()
-
setTime
public void setTime(Date time)
-
getStatus
public ExportFeedback.Status getStatus()
-
setStatus
public void setStatus(ExportFeedback.Status status)
-
getItemPath
public String getItemPath()
-
setItemPath
public void setItemPath(String itemPath)
-
getItemName
public String getItemName()
-
setItemName
public void setItemName(String itemName)
-
getResult
public List<ImportValidationFeedback> getResult()
-
setResult
public void setResult(List<ImportValidationFeedback> result)
-
isSimpleString
public boolean isSimpleString()
-
setSimpleString
public void setSimpleString(boolean isSimpleString)
-
-