All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.odpi.openmetadata.accessservices.digitalarchitecture.properties.ConnectionProperties Maven / Gradle / Ivy

The newest version!
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.accessservices.digitalarchitecture.properties;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;

/**
 * The connection is an object that contains the properties needed to create and initialise a connector to access a
 * specific data assets.
 *
 * The properties for a connection are defined in model 0201.  They include the following options for connector name:
 * 
    *
  • * guid - Globally unique identifier for the connection. *
  • *
  • * url - URL of the connection definition in the metadata repository. * This URL can be stored as a property in another entity to create an explicit link to this connection. *
  • *
  • * qualifiedName - The official (unique) name for the connection. * This is often defined by the IT systems management organization and should be used (when available) on * audit logs and error messages. The qualifiedName is defined in the 0010 model as part of Referenceable. *
  • *
  • * displayName - A consumable name for the connection. Often a shortened form of the qualifiedName for use * on user interfaces and messages. The displayName should be only be used for audit logs and error messages * if the qualifiedName is not set. *
  • *
* * Either the guid, qualifiedName or displayName can be used to specify the name for a connection. * * Other properties for the connection include: *
    *
  • * type - information about the TypeDef for Connection *
  • *
  • * description - A full description of the connection covering details of the assets it connects to * along with usage and version information. *
  • *
  • * additionalProperties - Any additional properties associated with the connection. *
  • *
  • * configurationProperties - properties for configuring the connector. *
  • *
  • * securedProperties - Protected properties for secure log on by connector to back end server. These * are protected properties that can only be retrieved by privileged connector code. *
  • *
  • * userId - name or URI or connecting user. *
  • *
  • * encryptedPassword - password for the userId - needs decrypting by connector before use. *
  • *
  • * clearPassword - password for userId - ready to use. *
  • *
  • * connectorType - Properties that describe the connector type for the connector. *
  • *
  • * endpoint - Properties that describe the server endpoint where the connector will retrieve the assets. *
  • *
  • * assetSummary - short description of the connected asset (if any). *
  • *
* * The connection class is simply used to cache the properties for an connection. * It is used by other classes to exchange this information between a metadata repository and a consumer. */ @JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE) @JsonInclude(JsonInclude.Include.NON_NULL) @JsonIgnoreProperties(ignoreUnknown=true) public class ConnectionProperties extends ReferenceableProperties { /* * Attributes of a connector */ private String displayName = null; private String description = null; private String userId = null; private String encryptedPassword = null; private String clearPassword = null; private Map configurationProperties = null; private Map securedProperties = null; /** * Default constructor sets the Connection properties to null. */ public ConnectionProperties() { super(); } /** * Copy/clone Constructor to return a copy of a connection object. * * @param template Connection to copy */ public ConnectionProperties(ConnectionProperties template) { super(template); if (template != null) { displayName = template.getDisplayName(); description = template.getDescription(); userId = template.getUserId(); clearPassword = template.getClearPassword(); encryptedPassword = template.getEncryptedPassword(); configurationProperties = template.getConfigurationProperties(); securedProperties = template.getSecuredProperties(); } } /** * Returns the stored display name property for the connection. * Null means that no displayName is available. * * @return displayName */ public String getDisplayName() { return displayName; } /** * Set up the display name for UIs and reports. * * @param displayName String name */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** * Set up description of the element. * * @param description String */ public void setDescription(String description) { this.description = description; } /** * Returns the stored description property for the connection. * If no description is provided then null is returned. * * @return description */ public String getDescription() { return description; } /** * Return the userId to use on this connection. * * @return string */ public String getUserId() { return userId; } /** * Set up the userId to use on this connection. * * @param userId string */ public void setUserId(String userId) { this.userId = userId; } /** * Return an encrypted password. The caller is responsible for decrypting it. * * @return string */ public String getEncryptedPassword() { return encryptedPassword; } /** * Set up an encrypted password. * * @param encryptedPassword string */ public void setEncryptedPassword(String encryptedPassword) { this.encryptedPassword = encryptedPassword; } /** * Return an unencrypted password. * * @return string */ public String getClearPassword() { return clearPassword; } /** * Set up an unencrypted password. * * @param clearPassword string */ public void setClearPassword(String clearPassword) { this.clearPassword = clearPassword; } /** * Set up the configuration properties for this Connection. * * @param configurationProperties properties that contain additional configuration information for the connector. */ public void setConfigurationProperties(Map configurationProperties) { this.configurationProperties = configurationProperties; } /** * Return a copy of the configuration properties. Null means no secured properties are available. * * @return secured properties typically user credentials for the connection */ public Map getConfigurationProperties() { if (configurationProperties == null) { return null; } else if (configurationProperties.isEmpty()) { return null; } else { return new HashMap<>(configurationProperties); } } /** * Set up the secured properties for this Connection. * * @param securedProperties properties that contain secret information such as log on information. */ public void setSecuredProperties(Map securedProperties) { this.securedProperties = securedProperties; } /** * Return a copy of the secured properties. Null means no secured properties are available. * * @return secured properties typically user credentials for the connection */ public Map getSecuredProperties() { if (securedProperties == null) { return null; } else if (securedProperties.isEmpty()) { return null; } else { return new HashMap<>(securedProperties); } } /** * Standard toString method. Note SecuredProperties and other credential type properties are not displayed. * This is deliberate because there is no knowing where the string will be printed. * * @return print out of variables in a JSON-style */ @Override public String toString() { return "ConnectionProperties{" + "displayName='" + displayName + '\'' + ", description='" + description + '\'' + ", userId='" + userId + '\'' + ", encryptedPassword='" + encryptedPassword + '\'' + ", clearPassword='" + clearPassword + '\'' + ", configurationProperties=" + configurationProperties + ", securedProperties=" + securedProperties + ", qualifiedName='" + getQualifiedName() + '\'' + ", additionalProperties=" + getAdditionalProperties() + ", effectiveFrom=" + getEffectiveFrom() + ", effectiveTo=" + getEffectiveTo() + ", typeName='" + getTypeName() + '\'' + ", extendedProperties=" + getExtendedProperties() + '}'; } /** * Compare the values of the supplied object with those stored in the current object. * * @param objectToCompare supplied object * @return boolean result of comparison */ @Override public boolean equals(Object objectToCompare) { if (this == objectToCompare) { return true; } if (objectToCompare == null || getClass() != objectToCompare.getClass()) { return false; } if (!super.equals(objectToCompare)) { return false; } ConnectionProperties that = (ConnectionProperties) objectToCompare; return Objects.equals(getDisplayName(), that.getDisplayName()) && Objects.equals(getDescription(), that.getDescription()) && Objects.equals(getUserId(), that.getUserId()) && Objects.equals(getEncryptedPassword(), that.getEncryptedPassword()) && Objects.equals(getClearPassword(), that.getClearPassword()) && Objects.equals(getConfigurationProperties(), that.getConfigurationProperties()) && Objects.equals(getSecuredProperties(), that.getSecuredProperties()); } /** * Return hash code based on properties. * * @return int */ @Override public int hashCode() { return Objects.hash(super.hashCode(), getDisplayName(), getDescription(), getUserId(), getEncryptedPassword(), getClearPassword(), getSecuredProperties(), getConfigurationProperties()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy