Class IncidentImpactedElement
- java.lang.Object
-
- org.odpi.openmetadata.frameworks.governanceaction.properties.IncidentImpactedElement
-
- All Implemented Interfaces:
Serializable
public class IncidentImpactedElement extends Object implements Serializable
IncidentImpactedElement describes the element that is impacted by the incident reported by the incident report.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IncidentImpactedElement()Typical ConstructorIncidentImpactedElement(IncidentImpactedElement template)Copy/clone Constructor the resulting object will return true if tested with this.equals(template) as long as the template object is not null;
-
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.StringgetImpactedElementGUID()Return the unique identifier of the impacted element.intgetImpactSeverityLevel()Return the severity of the impact - the definition of the severity level is set up as part of the governance program.inthashCode()Create a hash code for this element type.voidsetImpactedElementGUID(String impactedElementGUID)Set up the unique identifier of the impacted element.voidsetImpactSeverityLevel(int impactSeverityLevel)Set up the severity of the impact - the definition of the severity level is set up as part of the governance program.StringtoString()Standard toString method.
-
-
-
Constructor Detail
-
IncidentImpactedElement
public IncidentImpactedElement()
Typical Constructor
-
IncidentImpactedElement
public IncidentImpactedElement(IncidentImpactedElement template)
Copy/clone Constructor the resulting object will return true if tested with this.equals(template) as long as the template object is not null;- Parameters:
template- object being copied
-
-
Method Detail
-
getImpactSeverityLevel
public int getImpactSeverityLevel()
Return the severity of the impact - the definition of the severity level is set up as part of the governance program.- Returns:
- integer
-
setImpactSeverityLevel
public void setImpactSeverityLevel(int impactSeverityLevel)
Set up the severity of the impact - the definition of the severity level is set up as part of the governance program.- Parameters:
impactSeverityLevel- integer
-
getImpactedElementGUID
public String getImpactedElementGUID()
Return the unique identifier of the impacted element.- Returns:
- string identifier
-
setImpactedElementGUID
public void setImpactedElementGUID(String impactedElementGUID)
Set up the unique identifier of the impacted element.- Parameters:
impactedElementGUID- string identifier
-
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.
-
-