Class DiscoveryEngineConfigurationEvent
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.discoveryengine.events.DiscoveryEngineEvent
-
- org.odpi.openmetadata.accessservices.discoveryengine.events.DiscoveryEngineConfigurationEvent
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DiscoveryServiceConfigurationEvent
public class DiscoveryEngineConfigurationEvent extends DiscoveryEngineEvent
DiscoveryEngineConfigurationEvent is used to inform the discovery server that the configuration of one of its discovery engines has changed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DiscoveryEngineConfigurationEvent()Default constructorDiscoveryEngineConfigurationEvent(DiscoveryEngineConfigurationEvent template)Copy/clone constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Return comparison result based on the content of the properties.StringgetDiscoveryEngineGUID()Return the unique identifier of the discovery engine that has a configuration change.StringgetDiscoveryEngineName()Return the unique name of the discovery engine that has a configuration change.inthashCode()Return hash code for this objectvoidsetDiscoveryEngineGUID(String discoveryEngineGUID)Set up the unique identifier of the discovery engine that has a configuration change.voidsetDiscoveryEngineName(String discoveryEngineName)Set up the unique name of the discovery engine that has a configuration change.StringtoString()JSON-style toString-
Methods inherited from class org.odpi.openmetadata.accessservices.discoveryengine.events.DiscoveryEngineEvent
getEventType, getEventVersionId, setEventType, setEventVersionId
-
-
-
-
Constructor Detail
-
DiscoveryEngineConfigurationEvent
public DiscoveryEngineConfigurationEvent()
Default constructor
-
DiscoveryEngineConfigurationEvent
public DiscoveryEngineConfigurationEvent(DiscoveryEngineConfigurationEvent template)
Copy/clone constructor.- Parameters:
template- object to copy
-
-
Method Detail
-
getDiscoveryEngineGUID
public String getDiscoveryEngineGUID()
Return the unique identifier of the discovery engine that has a configuration change.- Returns:
- string guid
-
setDiscoveryEngineGUID
public void setDiscoveryEngineGUID(String discoveryEngineGUID)
Set up the unique identifier of the discovery engine that has a configuration change.- Parameters:
discoveryEngineGUID- string guid
-
getDiscoveryEngineName
public String getDiscoveryEngineName()
Return the unique name of the discovery engine that has a configuration change.- Returns:
- string name
-
setDiscoveryEngineName
public void setDiscoveryEngineName(String discoveryEngineName)
Set up the unique name of the discovery engine that has a configuration change.- Parameters:
discoveryEngineName- string name
-
toString
public String toString()
JSON-style toString- Overrides:
toStringin classDiscoveryEngineEvent- Returns:
- return string containing the property names and values
-
equals
public boolean equals(Object objectToCompare)
Return comparison result based on the content of the properties.- Overrides:
equalsin classDiscoveryEngineEvent- Parameters:
objectToCompare- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCodein classDiscoveryEngineEvent- Returns:
- int hash code
-
-