Class DiscoveryEngineConfigurationEvent
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.discoveryengine.events.DiscoveryEngineEvent
-
- org.odpi.openmetadata.accessservices.discoveryengine.events.DiscoveryEngineConfigurationEvent
-
- All Implemented Interfaces:
java.io.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 boolean
equals(java.lang.Object objectToCompare)
Return comparison result based on the content of the properties.java.lang.String
getDiscoveryEngineGUID()
Return the unique identifier of the discovery engine that has a configuration change.java.lang.String
getDiscoveryEngineName()
Return the unique name of the discovery engine that has a configuration change.int
hashCode()
Return hash code for this objectvoid
setDiscoveryEngineGUID(java.lang.String discoveryEngineGUID)
Set up the unique identifier of the discovery engine that has a configuration change.void
setDiscoveryEngineName(java.lang.String discoveryEngineName)
Set up the unique name of the discovery engine that has a configuration change.java.lang.String
toString()
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 java.lang.String getDiscoveryEngineGUID()
Return the unique identifier of the discovery engine that has a configuration change.- Returns:
- string guid
-
setDiscoveryEngineGUID
public void setDiscoveryEngineGUID(java.lang.String discoveryEngineGUID)
Set up the unique identifier of the discovery engine that has a configuration change.- Parameters:
discoveryEngineGUID
- string guid
-
getDiscoveryEngineName
public java.lang.String getDiscoveryEngineName()
Return the unique name of the discovery engine that has a configuration change.- Returns:
- string name
-
setDiscoveryEngineName
public void setDiscoveryEngineName(java.lang.String discoveryEngineName)
Set up the unique name of the discovery engine that has a configuration change.- Parameters:
discoveryEngineName
- string name
-
toString
public java.lang.String toString()
JSON-style toString- Overrides:
toString
in classDiscoveryEngineEvent
- Returns:
- return string containing the property names and values
-
equals
public boolean equals(java.lang.Object objectToCompare)
Return comparison result based on the content of the properties.- Overrides:
equals
in classDiscoveryEngineEvent
- Parameters:
objectToCompare
- test object- Returns:
- result of comparison
-
hashCode
public int hashCode()
Return hash code for this object- Overrides:
hashCode
in classDiscoveryEngineEvent
- Returns:
- int hash code
-
-