Package org.apache.storm.flux.model
Class GroupingDef
- java.lang.Object
-
- org.apache.storm.flux.model.GroupingDef
-
public class GroupingDef extends Object
Bean representation of a Storm stream grouping.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GroupingDef.Type
Types of stream groupings Storm allows.
-
Constructor Summary
Constructors Constructor Description GroupingDef()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getArgs()
ObjectDef
getCustomClass()
String
getStreamId()
GroupingDef.Type
getType()
void
setArgs(List<String> args)
void
setCustomClass(ObjectDef customClass)
void
setStreamId(String streamId)
void
setType(GroupingDef.Type type)
-
-
-
Method Detail
-
getType
public GroupingDef.Type getType()
-
setType
public void setType(GroupingDef.Type type)
-
getStreamId
public String getStreamId()
-
setStreamId
public void setStreamId(String streamId)
-
getCustomClass
public ObjectDef getCustomClass()
-
setCustomClass
public void setCustomClass(ObjectDef customClass)
-
-