Class SystemSetupCollectorResult
- java.lang.Object
-
- de.hybris.platform.core.initialization.SystemSetupCollectorResult
-
public class SystemSetupCollectorResult extends java.lang.ObjectThis class stores everything which is needed to call the hooked method
-
-
Constructor Summary
Constructors Constructor Description SystemSetupCollectorResult(SystemSetup classAnnotation, SystemSetup methodAnnotation, java.lang.Object importObject, java.lang.String extensionName, java.lang.String beanId, java.lang.reflect.Method method, java.lang.String name, java.lang.String description, boolean required, boolean patch)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()java.lang.StringgetExtensionName()java.lang.StringgetHash()java.lang.reflect.MethodgetMethod()java.lang.StringgetName()java.lang.ObjectgetObject()SystemSetup.ProcessgetProcess()If the method has aSystemSetup.Processattribute, it will be returned.SystemSetup.TypegetType()If the method has aSystemSetup.Typeattribute, it will be returned.booleanisPatch()booleanisRequired()
-
-
-
Constructor Detail
-
SystemSetupCollectorResult
public SystemSetupCollectorResult(SystemSetup classAnnotation, SystemSetup methodAnnotation, java.lang.Object importObject, java.lang.String extensionName, java.lang.String beanId, java.lang.reflect.Method method, java.lang.String name, java.lang.String description, boolean required, boolean patch)
-
-
Method Detail
-
getObject
public java.lang.Object getObject()
-
getMethod
public java.lang.reflect.Method getMethod()
-
getExtensionName
public java.lang.String getExtensionName()
-
getName
public java.lang.String getName()
-
getDescription
public java.lang.String getDescription()
-
isRequired
public boolean isRequired()
-
isPatch
public boolean isPatch()
-
getHash
public java.lang.String getHash()
-
getType
public SystemSetup.Type 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
public SystemSetup.Process 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
-
-