Class ContactMethodProperties
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.devops.properties.ContactMethodProperties
-
- All Implemented Interfaces:
Serializable
public class ContactMethodProperties extends Object implements Serializable
ContactMethodProperties describes a single mechanism that can be used to contact an individual.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContactMethodProperties()Default constructorContactMethodProperties(ContactMethodProperties template)Copy/clone constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Equals method that returns true if containing properties are the same.DategetEffectiveFrom()Return the date/time that this element is effective from (null means effective from the epoch).DategetEffectiveTo()Return the date/time that element is effective to (null means that it is effective indefinitely into the future).Map<String,Object>getExtendedProperties()Return the properties that have been defined for a subtype of this object that are not supported explicitly by this bean.StringgetService()Return the URL of the service used to contact the individual.ContactMethodTypegetType()Return the type of the contact method.StringgetTypeName()Return the name of the open metadata type for this metadata element.StringgetValue()Return the account name or similar value used to direct the message to the individual.inthashCode()Hash code for this objectvoidsetEffectiveFrom(Date effectiveFrom)Set up the date/time that this element is effective from (null means effective from the epoch).voidsetEffectiveTo(Date effectiveTo)Set the date/time that element is effective to (null means that it is effective indefinitely into the future).voidsetExtendedProperties(Map<String,Object> extendedProperties)Set up the properties that have been defined for a subtype of this object that are not supported explicitly by this bean.voidsetService(String service)Set up theURL of the service used to contact the individual.voidsetType(ContactMethodType type)Set up the type of the contact method.voidsetTypeName(String typeName)Set up the name of the open metadata type for this element.voidsetValue(String value)Set up the account name or similar value used to direct the message to the individual.StringtoString()JSON-style toString.
-
-
-
Constructor Detail
-
ContactMethodProperties
public ContactMethodProperties()
Default constructor
-
ContactMethodProperties
public ContactMethodProperties(ContactMethodProperties template)
Copy/clone constructor- Parameters:
template- object to copy
-
-
Method Detail
-
getType
public ContactMethodType getType()
Return the type of the contact method.- Returns:
- contact method type enum
-
setType
public void setType(ContactMethodType type)
Set up the type of the contact method.- Parameters:
type- contact method type enum
-
getService
public String getService()
Return the URL of the service used to contact the individual.- Returns:
- service URL
-
setService
public void setService(String service)
Set up theURL of the service used to contact the individual.- Parameters:
service- service URL
-
getValue
public String getValue()
Return the account name or similar value used to direct the message to the individual.- Returns:
- value string
-
setValue
public void setValue(String value)
Set up the account name or similar value used to direct the message to the individual.- Parameters:
value- value string
-
getEffectiveFrom
public Date getEffectiveFrom()
Return the date/time that this element is effective from (null means effective from the epoch).- Returns:
- date object
-
setEffectiveFrom
public void setEffectiveFrom(Date effectiveFrom)
Set up the date/time that this element is effective from (null means effective from the epoch).- Parameters:
effectiveFrom- date object
-
getEffectiveTo
public Date getEffectiveTo()
Return the date/time that element is effective to (null means that it is effective indefinitely into the future).- Returns:
- date object
-
setEffectiveTo
public void setEffectiveTo(Date effectiveTo)
Set the date/time that element is effective to (null means that it is effective indefinitely into the future).- Parameters:
effectiveTo- date object
-
getTypeName
public String getTypeName()
Return the name of the open metadata type for this metadata element.- Returns:
- string name
-
setTypeName
public void setTypeName(String typeName)
Set up the name of the open metadata type for this element.- Parameters:
typeName- string name
-
getExtendedProperties
public Map<String,Object> getExtendedProperties()
Return the properties that have been defined for a subtype of this object that are not supported explicitly by this bean.- Returns:
- property map
-
setExtendedProperties
public void setExtendedProperties(Map<String,Object> extendedProperties)
Set up the properties that have been defined for a subtype of this object that are not supported explicitly by this bean.- Parameters:
extendedProperties- property map
-
toString
public String toString()
JSON-style toString.
-
equals
public boolean equals(Object objectToCompare)
Equals method that returns true if containing properties are the same.
-
-