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

org.odpi.openmetadata.adminservices.configuration.properties.OpenMetadataExchangeRule Maven / Gradle / Ivy

Go to download

Provides the definitions that make up the APIs used by external components when communicating with the open metadata administration services.

There is a newer version: 5.0
Show newest version
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.adminservices.configuration.properties;


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


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

/**
 * OpenMetadataExchangeRule controls the sending/receiving of metadata instances on the metadata highway.
 * 
    *
  • * REGISTRATION_ONLY means do not send/receive reference metadata - just perform the minimal registration * exchanges. *
  • *
  • * JUST_TYPEDEFS means only send/receive/validate type definitions (TypeDefs). *
  • *
  • * SELECTED_TYPES means that in addition to TypeDefs events, only metadata instances of the types * supplied in the related list of TypeDefs (see typesToSend, typesToSave and typesToFederate) should be processed. *
  • *
  • * DESELECTED_TYPES means that in addition to TypeDefs events, only metadata instances NOT of the types * supplied in the related list of TypeDefs (see typesToSend, typesToSave and typesToFederate) should be processed. *
  • *
  • * LEARNED_TYPES means that the local repository requests reference copies of metadata based on the requests of * the local user community. *
  • *
  • * ALL means send/receive all types of metadata that are supported by the local repository. *
  • *
*/ @JsonAutoDetect(getterVisibility=PUBLIC_ONLY, setterVisibility=PUBLIC_ONLY, fieldVisibility=NONE) @JsonInclude(JsonInclude.Include.NON_NULL) @JsonIgnoreProperties(ignoreUnknown=true) public enum OpenMetadataExchangeRule { /** * Only registration exchange; no TypeDefs or metadata instances. */ REGISTRATION_ONLY (0, "Registration Only", "Only registration exchange; no TypeDefs or metadata instances."), /** * Only registration and type definitions (TypeDefs) exchange. */ JUST_TYPEDEFS (1, "Just TypeDefs", "Only registration and type definitions (TypeDefs) exchange."), /** * Registration plus all type definitions (TypeDefs) and metadata instances (Entities and Relationships) of selected types. */ SELECTED_TYPES (2, "Selected Types", "Registration plus all type definitions (TypeDefs) and metadata " + "instances (Entities and Relationships) of selected types."), /** * Registration plus all type definitions (TypeDefs) and metadata instances (Entities and Relationships) of types * requested by local users to this server. */ LEARNED_TYPES (3, "Learned Types", "Registration plus all type definitions (TypeDefs) and metadata " + "instances (Entities and Relationships) of types " + "requested by local users to this server."), /** * Registration plus all type definitions (TypeDefs) and metadata instances (Entities and Relationships) NOT listed in selected types. */ DESELECTED_TYPES (4, "Deselected Types", "Registration plus all type definitions (TypeDefs) and metadata " + "instances (Entities and Relationships) NOT listed in selected types."), /** * Registration plus all type definitions (TypeDefs) and metadata instances (Entities, Classifications and Relationships). */ ALL (99, "All", "Registration plus all type definitions (TypeDefs) and metadata " + "instances (Entities, Classifications and Relationships)."); private final int ordinal; private final String name; private final String replicationRuleDescription; /** * Constructor for the metadata instance replication rule. * * @param ordinal the code number of this metadata instance replication rule. * @param name the name of this metadata instance replication rule. * @param replicationRuleDescription the description of this metadata instance replication rule. */ OpenMetadataExchangeRule(int ordinal, String name, String replicationRuleDescription) { this.ordinal = ordinal; this.name = name; this.replicationRuleDescription = replicationRuleDescription; } /** * Return the code number of this metadata instance replication rule. * * @return int replication rule code number */ public int getOrdinal() { return ordinal; } /** * Return the name of this metadata instance replication rule. * * @return String replication rule name */ public String getName() { return name; } /** * Return the description of this metadata instance replication rule. * * @return String replication rule description */ public String getDescription() { return replicationRuleDescription; } /** * Standard toString method. * * @return print out of variables in a JSON-style */ @Override public String toString() { return "OpenMetadataExchangeRule{" + "ordinal=" + ordinal + ", name='" + name + '\'' + ", replicationRuleDescription='" + replicationRuleDescription + '\'' + '}'; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy