Class SystemSetupCollectorResult
java.lang.Object
de.hybris.platform.core.initialization.SystemSetupCollectorResult
This class stores everything which is needed to call the hooked method
-
Constructor Summary
ConstructorsConstructorDescriptionSystemSetupCollectorResult(SystemSetup classAnnotation, SystemSetup methodAnnotation, Object importObject, String extensionName, String beanId, Method method, String name, String description, boolean required, boolean patch) -
Method Summary
Modifier and TypeMethodDescriptiongetHash()getName()If the method has aSystemSetup.Processattribute, it will be returned.getType()If the method has aSystemSetup.Typeattribute, it will be returned.booleanisPatch()boolean
-
Constructor Details
-
SystemSetupCollectorResult
public SystemSetupCollectorResult(SystemSetup classAnnotation, SystemSetup methodAnnotation, Object importObject, String extensionName, String beanId, Method method, String name, String description, boolean required, boolean patch)
-
-
Method Details
-
getObject
-
getMethod
-
getExtensionName
-
getName
-
getDescription
-
isRequired
public boolean isRequired() -
isPatch
public boolean isPatch() -
getHash
-
getType
If the method has aSystemSetup.Typeattribute, it will be returned. Otherwise, if the class has aSystemSetup.Typeattribute, this will be returned. If this isn't given either,SystemSetup.Type.ALL will be returned -
getProcess
If the method has aSystemSetup.Processattribute, it will be returned. Otherwise, if the class has aSystemSetup.Processattribute, this will be returned. If this isn't given either,SystemSetup.Process.ALL will be returned
-