Package com.cloudera.cdp.dw.model
Class ConfigContentResp
- java.lang.Object
-
- com.cloudera.cdp.dw.model.ConfigContentResp
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-12-01T13:59:39.820-08:00") public class ConfigContentResp extends Object
Contents of a ConfigBlock.
-
-
Constructor Summary
Constructors Constructor Description ConfigContentResp()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getJson()
Getter for json.Map<String,String>
getKeyValues()
Getter for keyValues.String
getText()
Getter for text.int
hashCode()
void
setJson(String json)
Setter for json.void
setKeyValues(Map<String,String> keyValues)
Setter for keyValues.void
setText(String text)
Setter for text.String
toString()
-
-
-
Method Detail
-
getKeyValues
public Map<String,String> getKeyValues()
Getter for keyValues. Key-value type configurations.
-
setKeyValues
public void setKeyValues(Map<String,String> keyValues)
Setter for keyValues. Key-value type configurations.
-
getText
public String getText()
Getter for text. Text type configuration.
-
setText
public void setText(String text)
Setter for text. Text type configuration.
-
getJson
public String getJson()
Getter for json. JSON type configuration.
-
setJson
public void setJson(String json)
Setter for json. JSON type configuration.
-
-