Class DiscoveryRequestRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.discoveryengine.rest.ODFOMASAPIRequestBody
-
- org.odpi.openmetadata.accessservices.discoveryengine.rest.DiscoveryRequestRequestBody
-
- All Implemented Interfaces:
Serializable
public class DiscoveryRequestRequestBody extends ODFOMASAPIRequestBody
CommentRequestBody provides a structure for passing a comment as a request body over a REST API.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,String>analysisParametersprotected List<String>annotationTypes
-
Constructor Summary
Constructors Constructor Description DiscoveryRequestRequestBody()Default constructorDiscoveryRequestRequestBody(DiscoveryRequestRequestBody template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Equals method that returns true if containing properties are the same.Map<String,String>getAnalysisParameters()Return the parameters used to drive the discovery service's analysis.List<String>getAnnotationTypes()Return the list of annotation types.inthashCode()Return hash code for this objectvoidsetAnalysisParameters(Map<String,String> analysisParameters)Set up the parameters used to drive the discovery service's analysis.voidsetAnnotationTypes(List<String> annotationTypes)Set up the status of the discovery process.StringtoString()JSON-style toString.
-
-
-
Constructor Detail
-
DiscoveryRequestRequestBody
public DiscoveryRequestRequestBody()
Default constructor
-
DiscoveryRequestRequestBody
public DiscoveryRequestRequestBody(DiscoveryRequestRequestBody template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getAnalysisParameters
public Map<String,String> getAnalysisParameters()
Return the parameters used to drive the discovery service's analysis.- Returns:
- map storing the analysis parameters
-
setAnalysisParameters
public void setAnalysisParameters(Map<String,String> analysisParameters)
Set up the parameters used to drive the discovery service's analysis.- Parameters:
analysisParameters- map storing the analysis parameters
-
getAnnotationTypes
public List<String> getAnnotationTypes()
Return the list of annotation types.- Returns:
- list of type names
-
setAnnotationTypes
public void setAnnotationTypes(List<String> annotationTypes)
Set up the status of the discovery process.- Parameters:
annotationTypes- list of types
-
toString
public String toString()
JSON-style toString.- Overrides:
toStringin classODFOMASAPIRequestBody- Returns:
- list of properties and their values.
-
equals
public boolean equals(Object objectToCompare)
Equals method that returns true if containing properties are the same.
-
-