Class ScanAnnotatedClassesConfig
- java.lang.Object
-
- org.optaplanner.core.config.AbstractConfig<ScanAnnotatedClassesConfig>
-
- org.optaplanner.core.config.domain.ScanAnnotatedClassesConfig
-
@Deprecated public class ScanAnnotatedClassesConfig extends AbstractConfig<ScanAnnotatedClassesConfig>
Deprecated.in favor of the Quarkus integration in OptaPlanner 8 or Spring Boot starter.
-
-
Constructor Summary
Constructors Constructor Description ScanAnnotatedClassesConfig()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description SolutionDescriptor
buildSolutionDescriptor(SolverConfigContext configContext, ClassLoader classLoader, ScoreDefinition deprecatedScoreDefinition)
Deprecated.ScanAnnotatedClassesConfig
copyConfig()
Deprecated.Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)
on itList<String>
getPackageExcludeList()
Deprecated.List<String>
getPackageIncludeList()
Deprecated.ScanAnnotatedClassesConfig
inherit(ScanAnnotatedClassesConfig inheritedConfig)
Deprecated.Inherits each property of theinheritedConfig
unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).protected List<Class<?>>
loadEntityClassList(org.reflections.Reflections reflections)
Deprecated.protected Class<?>
loadSolutionClass(org.reflections.Reflections reflections)
Deprecated.void
setPackageExcludeList(List<String> packageExcludeList)
Deprecated.void
setPackageIncludeList(List<String> packageIncludeList)
Deprecated.String
toString()
Deprecated.-
Methods inherited from class org.optaplanner.core.config.AbstractConfig
deduceEntityDescriptor, deduceVariableDescriptor, deduceVariableDescriptorList
-
-
-
-
Method Detail
-
setPackageIncludeList
public void setPackageIncludeList(List<String> packageIncludeList)
Deprecated.
-
setPackageExcludeList
public void setPackageExcludeList(List<String> packageExcludeList)
Deprecated.
-
buildSolutionDescriptor
public SolutionDescriptor buildSolutionDescriptor(SolverConfigContext configContext, ClassLoader classLoader, ScoreDefinition deprecatedScoreDefinition)
Deprecated.
-
loadSolutionClass
protected Class<?> loadSolutionClass(org.reflections.Reflections reflections)
Deprecated.
-
loadEntityClassList
protected List<Class<?>> loadEntityClassList(org.reflections.Reflections reflections)
Deprecated.
-
inherit
public ScanAnnotatedClassesConfig inherit(ScanAnnotatedClassesConfig inheritedConfig)
Deprecated.Description copied from class:AbstractConfig
Inherits each property of theinheritedConfig
unless that property (or a semantic alternative) is defined by this instance (which overwrites the inherited behaviour).After the inheritance, if a property on this
AbstractConfig
composition is replaced, it should not affect the inherited composition instance.- Specified by:
inherit
in classAbstractConfig<ScanAnnotatedClassesConfig>
- Parameters:
inheritedConfig
- never null- Returns:
- this
-
copyConfig
public ScanAnnotatedClassesConfig copyConfig()
Deprecated.Description copied from class:AbstractConfig
Typically implemented by constructing a new instance and callingAbstractConfig.inherit(AbstractConfig)
on it- Specified by:
copyConfig
in classAbstractConfig<ScanAnnotatedClassesConfig>
- Returns:
- new instance
-
toString
public String toString()
Deprecated.- Overrides:
toString
in classAbstractConfig<ScanAnnotatedClassesConfig>
-
-