org.odpi.openmetadata.governanceservers.openlineage.model.LineageQueryParameters 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.model;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.NONE;
import static com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility.PUBLIC_ONLY;
@JsonAutoDetect(getterVisibility = PUBLIC_ONLY, setterVisibility = PUBLIC_ONLY, fieldVisibility = NONE)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.PROPERTY,
property = "class"
)
public class LineageQueryParameters {
private Scope scope;
private String displayNameMustContain;
private boolean includeProcesses;
public LineageQueryParameters() {
}
public LineageQueryParameters(Scope scope, String displayNameMustContain, boolean includeProcesses ) {
this.scope = scope;
this.displayNameMustContain = displayNameMustContain;
this.includeProcesses = includeProcesses;
}
public Scope getScope() {
return scope;
}
public void setScope(Scope scope) {
this.scope = scope;
}
public String getDisplayNameMustContain() {
return displayNameMustContain;
}
public void setDisplayNameMustContain(String displayNameMustContain) {
this.displayNameMustContain = displayNameMustContain;
}
public boolean isIncludeProcesses() {
return includeProcesses;
}
public void setIncludeProcesses(boolean includeProcesses) {
this.includeProcesses = includeProcesses;
}
@Override
public String toString() {
return "LineageQueryParams{" +
"scope=" + scope +
", displayNameMustContain='" + displayNameMustContain + '\'' +
", includeProcesses=" + includeProcesses +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy