Class OperationNotificationIdentityProjection
- java.lang.Object
-
- com.morpheusdata.model.MorpheusModel
-
- com.morpheusdata.model.projection.MorpheusIdentityModel
-
- com.morpheusdata.model.projection.OperationNotificationIdentityProjection
-
- Direct Known Subclasses:
OperationNotification
public class OperationNotificationIdentityProjection extends MorpheusIdentityModel
Provides a subset of properties from theOperationNotification
object for doing a sync match comparison with less bandwidth usage and memory footprint. This is a DTO Projection object- See Also:
MorpheusOperationNotificationService
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
externalId
protected java.lang.String
name
-
Fields inherited from class com.morpheusdata.model.MorpheusModel
config, id
-
-
Constructor Summary
Constructors Constructor Description OperationNotificationIdentityProjection()
OperationNotificationIdentityProjection(java.lang.Long id, java.lang.String externalId, java.lang.String name, java.lang.String config)
The default constructor for creating a projection object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getExternalId()
Returns the current externalId on this Projectionjava.lang.Long
getId()
Gets the uniquely generated ID from the database record stored via the Morpheus appliance.java.lang.String
getName()
Returns the name of the operation notification.void
setExternalId(java.lang.String externalId)
Sets the externalId of the operation notification.void
setId(java.lang.Long id)
Used for setting the unique ID of the Pool Type.void
setName(java.lang.String name)
Sets the name of the operation notification.-
Methods inherited from class com.morpheusdata.model.projection.MorpheusIdentityModel
getIdentityProperties
-
Methods inherited from class com.morpheusdata.model.MorpheusModel
getConfig, getConfigMap, getConfigProperty, getDirtyProperties, getDirtyPropertyValues, getProperties, isDirty, markClean, markDirty, markDirty, setConfig, setConfigMap, setConfigProperty
-
-
-
-
Constructor Detail
-
OperationNotificationIdentityProjection
public OperationNotificationIdentityProjection(java.lang.Long id, java.lang.String externalId, java.lang.String name, java.lang.String config)
The default constructor for creating a projection object.- Parameters:
id
- the database id of the objectexternalId
- the API id of the objectname
- the Name of the object as a secondary comparisonconfig
- the configuration of the object
-
OperationNotificationIdentityProjection
public OperationNotificationIdentityProjection()
-
-
Method Detail
-
getExternalId
public java.lang.String getExternalId()
Returns the current externalId on this Projection- Returns:
- the externalId normally matches the api id
-
setExternalId
public void setExternalId(java.lang.String externalId)
Sets the externalId of the operation notification. In this class this should not be called directly- Parameters:
externalId
- the external API Id of the Zone
-
getName
public java.lang.String getName()
Returns the name of the operation notification.- Returns:
- the name of the operation notification.
-
setName
public void setName(java.lang.String name)
Sets the name of the operation notification. In this class this should not be called directly- Parameters:
name
- the name to set on the object
-
getId
public java.lang.Long getId()
Description copied from class:MorpheusModel
Gets the uniquely generated ID from the database record stored via the Morpheus appliance.- Overrides:
getId
in classMorpheusModel
- Returns:
- id
-
setId
public void setId(java.lang.Long id)
Description copied from class:MorpheusModel
Used for setting the unique ID of the Pool Type. This should not be directly used.- Overrides:
setId
in classMorpheusModel
- Parameters:
id
- unique identifer
-
-