Class MigrationEntry
- java.lang.Object
-
- org.jbpm.runtime.manager.impl.migration.MigrationEntry
-
- All Implemented Interfaces:
Serializable
public class MigrationEntry extends Object implements Serializable
Represent single entry of the process instance migration. Entry is classified as:- INFO - information about performed operation
- WARN - indicates of possible issues or not recommended settings
- ERROR - indicates a failure within process instance migration and rollback
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MigrationEntry.Type
-
Constructor Summary
Constructors Constructor Description MigrationEntry(MigrationEntry.Type type, String message)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getMessage()
Date
getTimestamp()
MigrationEntry.Type
getType()
void
setMessage(String message)
void
setTimestamp(Date timestamp)
void
setType(MigrationEntry.Type type)
String
toString()
-
-
-
Constructor Detail
-
MigrationEntry
public MigrationEntry(MigrationEntry.Type type, String message)
-
-
Method Detail
-
getTimestamp
public Date getTimestamp()
-
setTimestamp
public void setTimestamp(Date timestamp)
-
getMessage
public String getMessage()
-
setMessage
public void setMessage(String message)
-
getType
public MigrationEntry.Type getType()
-
setType
public void setType(MigrationEntry.Type type)
-
-