Class Stream
- java.lang.Object
-
- org.pentaho.di.trans.step.errorhandling.Stream
-
- All Implemented Interfaces:
StreamInterface
public class Stream extends Object implements StreamInterface
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.pentaho.di.trans.step.errorhandling.StreamInterface
StreamInterface.StreamType
-
-
Constructor Summary
Constructors Constructor Description Stream(StreamInterface stream)
Stream(StreamInterface.StreamType streamType, StepMeta stepMeta, String description, StreamIcon streamIcon, Object subject)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDescription()
StepMeta
getStepMeta()
String
getStepname()
StreamIcon
getStreamIcon()
StreamInterface.StreamType
getStreamType()
Object
getSubject()
int
hashCode()
void
setDescription(String description)
void
setStepMeta(StepMeta stepMeta)
void
setStreamIcon(StreamIcon streamIcon)
void
setStreamType(StreamInterface.StreamType streamType)
void
setSubject(Object subject)
String
toString()
-
-
-
Constructor Detail
-
Stream
public Stream(StreamInterface.StreamType streamType, StepMeta stepMeta, String description, StreamIcon streamIcon, Object subject)
- Parameters:
streamType
-stepname
-stepMeta
-description
-
-
Stream
public Stream(StreamInterface stream)
-
-
Method Detail
-
getStepname
public String getStepname()
- Specified by:
getStepname
in interfaceStreamInterface
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceStreamInterface
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Specified by:
setDescription
in interfaceStreamInterface
- Parameters:
description
- the description to set
-
getStreamType
public StreamInterface.StreamType getStreamType()
- Specified by:
getStreamType
in interfaceStreamInterface
- Returns:
- the streamType
-
setStreamType
public void setStreamType(StreamInterface.StreamType streamType)
- Specified by:
setStreamType
in interfaceStreamInterface
- Parameters:
streamType
- the streamType to set
-
getStepMeta
public StepMeta getStepMeta()
- Specified by:
getStepMeta
in interfaceStreamInterface
- Returns:
- the stepMeta
-
setStepMeta
public void setStepMeta(StepMeta stepMeta)
- Specified by:
setStepMeta
in interfaceStreamInterface
- Parameters:
stepMeta
- the stepMeta to set
-
getStreamIcon
public StreamIcon getStreamIcon()
- Specified by:
getStreamIcon
in interfaceStreamInterface
- Returns:
- the streamIcon
-
setStreamIcon
public void setStreamIcon(StreamIcon streamIcon)
- Specified by:
setStreamIcon
in interfaceStreamInterface
- Parameters:
streamIcon
- the streamIcon to set
-
getSubject
public Object getSubject()
- Specified by:
getSubject
in interfaceStreamInterface
- Returns:
- the subject
-
setSubject
public void setSubject(Object subject)
- Specified by:
setSubject
in interfaceStreamInterface
- Parameters:
subject
- the subject to set
-
-