Package io.scanbot.sdk.di
Interface RequiredDependency
-
- All Implemented Interfaces:
public interface RequiredDependencyDefine all data needed for one optional SDK dependency check.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classRequiredDependency.Companion
-
Method Summary
Modifier and Type Method Description StringgetAssetModuleAnchorClassPackageName()abstract StringgetAssetModuleAnchorClassName()Class name for *.java-class in asset module that is used to check if module is at all added.abstract Function0<GradleDependencyException>getExceptionFactory()Produce the exception that will be thrown when check fails. -
-
Method Detail
-
getAssetModuleAnchorClassPackageName
String getAssetModuleAnchorClassPackageName()
-
getAssetModuleAnchorClassName
abstract String getAssetModuleAnchorClassName()
Class name for
*.java-class in asset module that is used to check if module is at all added.
-
getExceptionFactory
abstract Function0<GradleDependencyException> getExceptionFactory()
Produce the exception that will be thrown when check fails.
-
-
-
-