Package io.openlineage.client.transports
Class FacetsConfig
- java.lang.Object
-
- io.openlineage.client.transports.FacetsConfig
-
public class FacetsConfig extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description FacetsConfig()
FacetsConfig(java.lang.String[] disabledFacets, java.lang.String[] customEnvironmentVariables)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String[]
getCustomEnvironmentVariables()
java.lang.String[]
getDisabledFacets()
java.lang.String
toString()
FacetsConfig
withCustomEnvironmentVariables(java.lang.String[] customEnvironmentVariables)
FacetsConfig
withDisabledFacets(java.lang.String[] disabledFacets)
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
withDisabledFacets
public FacetsConfig withDisabledFacets(java.lang.String[] disabledFacets)
- Returns:
- a clone of this object, except with this updated property (returns
this
if an identical value is passed).
-
withCustomEnvironmentVariables
public FacetsConfig withCustomEnvironmentVariables(java.lang.String[] customEnvironmentVariables)
- Returns:
- a clone of this object, except with this updated property (returns
this
if an identical value is passed).
-
getDisabledFacets
public java.lang.String[] getDisabledFacets()
-
getCustomEnvironmentVariables
public java.lang.String[] getCustomEnvironmentVariables()
-
-