org.odpi.openmetadata.governanceservers.openlineage.converters.ScopeEnumConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-lineage-services-api Show documentation
Show all versions of open-lineage-services-api Show documentation
Provides the definitions that make up the APIs used by external components when communicating
with the open lineage.
/* 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