Class EventDescription
- java.lang.Object
-
- com.opencloud.rhino.facilities.sas.bundle.EventDescription
-
- All Implemented Interfaces:
com.opencloud.util.FastSerializable
,Serializable
public class EventDescription extends Object implements com.opencloud.util.FastSerializable, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EventDescription()
Create an empty SAS event description For use during parsing only.EventDescription(DataInput dataInput)
EventDescription(String summary, String details, String user_exp, CallFlow call_flow, int level)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
CallFlow
getCall_flow()
String
getDetails()
int
getLevel()
String
getSummary()
String
getUser_exp()
int
hashCode()
void
setCall_flow(CallFlow callflow)
void
setDetails(String details)
void
setLevel(int level)
void
setSummary(String summary)
void
setUser_exp(String user_exp)
void
toStream(DataOutput dataOutput)
String
toString()
-
-
-
Constructor Detail
-
EventDescription
public EventDescription()
Create an empty SAS event description For use during parsing only. Summary is a mandatory field and must not be null
-
EventDescription
public EventDescription(String summary, String details, String user_exp, CallFlow call_flow, int level)
-
EventDescription
public EventDescription(DataInput dataInput) throws IOException
- Throws:
IOException
-
-
Method Detail
-
toStream
public void toStream(DataOutput dataOutput) throws IOException
- Specified by:
toStream
in interfacecom.opencloud.util.FastSerializable
- Throws:
IOException
-
getSummary
public String getSummary()
-
setSummary
public void setSummary(String summary)
-
getDetails
public String getDetails()
-
setDetails
public void setDetails(String details)
-
getUser_exp
public String getUser_exp()
-
setUser_exp
public void setUser_exp(String user_exp)
-
getCall_flow
public CallFlow getCall_flow()
-
setCall_flow
public void setCall_flow(CallFlow callflow)
-
getLevel
public int getLevel()
-
setLevel
public void setLevel(int level)
-
-