Package com.cloudera.cdp.drscp.model
Class Message
- java.lang.Object
-
- com.cloudera.cdp.drscp.model.Message
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.347-07:00") public class Message extends Object
The message object used to display warnings and errors during DRS workflows
-
-
Constructor Summary
Constructors Constructor Description Message()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getNamespace()
Getter for namespace.String
getText()
Getter for text.String
getTimestamp()
Getter for timestamp.int
hashCode()
void
setNamespace(String namespace)
Setter for namespace.void
setText(String text)
Setter for text.void
setTimestamp(String timestamp)
Setter for timestamp.String
toString()
-
-
-
Method Detail
-
getText
public String getText()
Getter for text. The text message of the warning/error.
-
setText
public void setText(String text)
Setter for text. The text message of the warning/error.
-
getTimestamp
public String getTimestamp()
Getter for timestamp. The time when the warning/error is hit.
-
setTimestamp
public void setTimestamp(String timestamp)
Setter for timestamp. The time when the warning/error is hit.
-
getNamespace
public String getNamespace()
Getter for namespace. The namespace that has the warning/error.
-
setNamespace
public void setNamespace(String namespace)
Setter for namespace. The namespace that has the warning/error.
-
-