Package de.hybris.bootstrap.config
Class CoreExtensionModule
- java.lang.Object
-
- de.hybris.bootstrap.config.AbstractExtensionModule
-
- de.hybris.bootstrap.config.CoreExtensionModule
-
public class CoreExtensionModule extends AbstractExtensionModule
The core extension contains the main sources of an extension. The following attributes are additionally needed th the attributes ofAbstractExtensionModule- String:packageroot - The classpath which have all classes of this module in common
- String:manager - The full qualified java classpath String of the manager of this module
- boolean:generate - set this to 'true' if Generated*.java classes should be generated
-
-
Constructor Summary
Constructors Constructor Description CoreExtensionModule()Creates an object with the name 'core'
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetManager()java.lang.StringgetPackageRoot()booleanisGenerate()booleanisGeneratePartOf()voidsetGenerate(boolean generate)voidsetGeneratePartOf(boolean generatePartOf)voidsetManager(java.lang.String manager)voidsetPackageRoot(java.lang.String packageroot)-
Methods inherited from class de.hybris.bootstrap.config.AbstractExtensionModule
getAdditionalClassPath, getName, isSourceAvailable, setAdditionalClassPath, setName, setSourceAvailable
-
-
-
-
Method Detail
-
getManager
public java.lang.String getManager()
-
setManager
public void setManager(java.lang.String manager)
-
getPackageRoot
public java.lang.String getPackageRoot()
-
setPackageRoot
public void setPackageRoot(java.lang.String packageroot)
-
isGenerate
public boolean isGenerate()
-
setGenerate
public void setGenerate(boolean generate)
-
isGeneratePartOf
public boolean isGeneratePartOf()
- Returns:
- the generatePartOf
-
setGeneratePartOf
public void setGeneratePartOf(boolean generatePartOf)
- Parameters:
generatePartOf- the generatePartOf to set
-
-