Class CalculatedValueClassificationRequestBody
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.assetmanager.rest.CalculatedValueClassificationRequestBody
-
- All Implemented Interfaces:
Serializable
public class CalculatedValueClassificationRequestBody extends Object implements Serializable
CalculatedValueClassificationRequestBody is used to identify the schema elements that are calculated (derived) rather than stored. Examples of this are relational database views.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CalculatedValueClassificationRequestBody()Default constructorCalculatedValueClassificationRequestBody(CalculatedValueClassificationRequestBody template)Copy/clone constructor for a primary key.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.StringgetFormula()Return the formula used to calculate the value.MetadataCorrelationPropertiesgetMetadataCorrelationProperties()Return the properties used to correlate the external metadata element with the open metadata element.inthashCode()Return has code based on properties.voidsetFormula(String formula)Set up the formula used to calculate the value.voidsetMetadataCorrelationProperties(MetadataCorrelationProperties metadataCorrelationProperties)Set up the properties used to correlate the external metadata element with the open metadata element.StringtoString()Standard toString method.
-
-
-
Constructor Detail
-
CalculatedValueClassificationRequestBody
public CalculatedValueClassificationRequestBody()
Default constructor
-
CalculatedValueClassificationRequestBody
public CalculatedValueClassificationRequestBody(CalculatedValueClassificationRequestBody template)
Copy/clone constructor for a primary key.- Parameters:
template- template object to copy.
-
-
Method Detail
-
getMetadataCorrelationProperties
public MetadataCorrelationProperties getMetadataCorrelationProperties()
Return the properties used to correlate the external metadata element with the open metadata element.- Returns:
- properties object
-
setMetadataCorrelationProperties
public void setMetadataCorrelationProperties(MetadataCorrelationProperties metadataCorrelationProperties)
Set up the properties used to correlate the external metadata element with the open metadata element.- Parameters:
metadataCorrelationProperties- properties object
-
getFormula
public String getFormula()
Return the formula used to calculate the value.- Returns:
- string formula with placeholders
-
setFormula
public void setFormula(String formula)
Set up the formula used to calculate the value.- Parameters:
formula- string description
-
toString
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-