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

org.odpi.openmetadata.governanceservers.openlineage.converters.ScopeEnumConverter Maven / Gradle / Ivy

Go to download

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

There is a newer version: 4.3
Show newest version
/* SPDX-License-Identifier: Apache-2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.governanceservers.openlineage.converters;

import org.odpi.openmetadata.governanceservers.openlineage.model.Scope;

import java.beans.PropertyEditorSupport;

public class ScopeEnumConverter  extends PropertyEditorSupport {

    public void setAsText(final String text) throws IllegalArgumentException {
        setValue(Scope.fromString(text));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy