Class RepoSerializer
- java.lang.Object
-
- org.pentaho.di.core.util.serialization.RepoSerializer
-
public class RepoSerializer extends Object
Writes/Reads StepMetaInterface to and from aRepository
Usage:
RepoSerializer .builder() .repo( repo ) .stepMeta( stepMeta ) .stepId( stepId ) .transId( transId ) .serialize();
Future enhancement could cover inclusion of Metastore and Databases for steps which need that info.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RepoSerializer.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RepoSerializer.Builder
builder()
void
deserialize()
void
serialize()
-
-
-
Method Detail
-
builder
public static RepoSerializer.Builder builder()
-
serialize
public void serialize() throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
deserialize
public void deserialize() throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
-