Package com.dtolabs.rundeck.core.logging
Interface ExecutionFileStorageOptions
-
public interface ExecutionFileStorageOptionsDefine whether operations are supported
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleangetPartialRetrieveSupported()default booleangetPartialStoreSupported()booleangetRetrieveSupported()booleangetStoreSupported()
-
-
-
Method Detail
-
getRetrieveSupported
boolean getRetrieveSupported()
- Returns:
- true if retrieve is supported, false otherwise
-
getPartialRetrieveSupported
default boolean getPartialRetrieveSupported()
- Returns:
- true if a partial retrieve request is supported
-
getStoreSupported
boolean getStoreSupported()
- Returns:
- true if store is supported, false otherwise
-
getPartialStoreSupported
default boolean getPartialStoreSupported()
- Returns:
- true if a partial storage request is supported
-
-