Package com.linkedin.venice.meta
Interface ETLStoreConfig
-
- All Superinterfaces:
DataModelBackedStructure<StoreETLConfig>
- All Known Implementing Classes:
ETLStoreConfigImpl
public interface ETLStoreConfig extends DataModelBackedStructure<StoreETLConfig>
This interface defines all the public APIs, and if you need to add accessors to some new fields, this interface needs to be changed accordingly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ETLStoreConfig
clone()
java.lang.String
getEtledUserProxyAccount()
boolean
isFutureVersionETLEnabled()
boolean
isRegularVersionETLEnabled()
void
setEtledUserProxyAccount(java.lang.String etledUserProxyAccount)
void
setFutureVersionETLEnabled(boolean futureVersionETLEnabled)
void
setRegularVersionETLEnabled(boolean regularVersionETLEnabled)
-
Methods inherited from interface com.linkedin.venice.meta.DataModelBackedStructure
dataModel
-
-
-
-
Method Detail
-
getEtledUserProxyAccount
java.lang.String getEtledUserProxyAccount()
-
setEtledUserProxyAccount
void setEtledUserProxyAccount(java.lang.String etledUserProxyAccount)
-
isRegularVersionETLEnabled
boolean isRegularVersionETLEnabled()
-
setRegularVersionETLEnabled
void setRegularVersionETLEnabled(boolean regularVersionETLEnabled)
-
isFutureVersionETLEnabled
boolean isFutureVersionETLEnabled()
-
setFutureVersionETLEnabled
void setFutureVersionETLEnabled(boolean futureVersionETLEnabled)
-
clone
ETLStoreConfig clone()
-
-