Package io.scanbot.sdk.di
Interface RequiredDependency
-
- All Implemented Interfaces:
public interface RequiredDependency
Define all data needed for one optional SDK dependency check.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
RequiredDependency.Companion
-
Method Summary
Modifier and Type Method Description String
getAssetModuleAnchorClassPackageName()
abstract String
getAssetModuleAnchorClassName()
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.
-
-