Class SapppspricingManager
java.lang.Object
de.hybris.platform.jalo.Manager
de.hybris.platform.jalo.extension.Extension
com.sap.retail.sapppspricing.jalo.GeneratedSapppspricingManager
com.sap.retail.sapppspricing.jalo.SapppspricingManager
- All Implemented Interfaces:
de.hybris.platform.jalo.extension.ItemLifecycleListener,Serializable
This is the extension manager of the Sapppspricing extension.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class de.hybris.platform.jalo.extension.Extension
de.hybris.platform.jalo.extension.Extension.RestrictedLanguagesProvider, de.hybris.platform.jalo.extension.Extension.RightsProviderNested classes/interfaces inherited from class de.hybris.platform.jalo.Manager
de.hybris.platform.jalo.Manager.GenericManagerSingletonCreator, de.hybris.platform.jalo.Manager.ManagerSingletonCreator -
Field Summary
Fields inherited from class com.sap.retail.sapppspricing.jalo.GeneratedSapppspricingManager
DEFAULT_INITIAL_ATTRIBUTES -
Constructor Summary
ConstructorsConstructorDescriptionNever call the constructor of any manager directly, call getInstance() You can place your business logic here - like registering a jalo session listener. -
Method Summary
Modifier and TypeMethodDescriptionvoidcreateEssentialData(Map<String, String> params, de.hybris.platform.util.JspContext jspc) Implement this method to create initial objects.voidcreateProjectData(Map<String, String> params, de.hybris.platform.util.JspContext jspc) Implement this method to create data that is used in your project.voiddestroy()Deprecated.static SapppspricingManagerGet the valid instance of this manager.voidinit()Deprecated.Methods inherited from class com.sap.retail.sapppspricing.jalo.GeneratedSapppspricingManager
createSAPOPPSCouponPromotion, createSAPOPPSCouponPromotion, getDefaultAttributeModes, getName, getOppsPromoResultType, getOppsPromoResultType, getSappps_businessUnitId, getSappps_businessUnitId, getSappps_interfaceVersion, getSappps_interfaceVersion, getSappps_sourceSystemId, getSappps_sourceSystemId, isDiscountable, isDiscountable, isDiscountableAsPrimitive, isDiscountableAsPrimitive, isSappps_active, isSappps_active, isSappps_activeAsPrimitive, isSappps_activeAsPrimitive, setDiscountable, setDiscountable, setDiscountable, setDiscountable, setOppsPromoResultType, setOppsPromoResultType, setSappps_active, setSappps_active, setSappps_active, setSappps_active, setSappps_businessUnitId, setSappps_businessUnitId, setSappps_interfaceVersion, setSappps_interfaceVersion, setSappps_sourceSystemId, setSappps_sourceSystemIdMethods inherited from class de.hybris.platform.jalo.extension.Extension
checkBeforeInitialization, checkBeforeItemRemoval, createSampleData, getCreatorDescription, getCreatorName, getCreatorParameterDefault, getCreatorParameterNames, getCreatorParameterPossibleValues, getRemote, isCreatorDisabled, notifyInitializationEnd, notifyInitializationStart, notifyItemRemoval, onFirstSessionCreation, writeReplaceMethods inherited from class de.hybris.platform.jalo.Manager
afterItemCreation, beforeItemCreation, extractNonRequiredRemoteFromItem, extractRequiredRemoteFromItem, getAllValuesSessionContext, getAttribute, getAttributeMap, getFirstItemByAttribute, getFirstItemByAttribute, getRemoteManagerClass, getSession, getSingletonManagerInstance, getTenant, getTransientObject, getTransientObjectMap, setAttribute, setTenant, setTransientObject, wrap
-
Constructor Details
-
SapppspricingManager
public SapppspricingManager()Never call the constructor of any manager directly, call getInstance() You can place your business logic here - like registering a jalo session listener. Each manager is created once for each tenant.
-
-
Method Details
-
getInstance
Get the valid instance of this manager.- Returns:
- the current instance of this manager
-
init
Deprecated.Use this method to do some basic work only ONCE in the lifetime of a tenant resp. "deployment". This method is called after manager creation (for example within startup of a tenant). Note that if you have more than one tenant you have a manager instance for each tenant.- Overrides:
initin classde.hybris.platform.jalo.Manager
-
destroy
Deprecated.Use this method as a callback when the manager instance is being destroyed (this happens before system initialization, at redeployment or if you shutdown your VM). Note that if you have more than one tenant you have a manager instance for each tenant.- Overrides:
destroyin classde.hybris.platform.jalo.Manager
-
createEssentialData
Implement this method to create initial objects. This method will be called by system creator during initialization and system update. Be sure that this method can be called repeatedly. An example usage of this method is to create required cronjobs or modifying the type system (setting e.g some default values)- Overrides:
createEssentialDatain classde.hybris.platform.jalo.extension.Extension- Parameters:
params- the parameters provided by user for creation of objects for the extensionjspc- the jsp context; you can use it to write progress information to the jsp page during creation
-
createProjectData
Implement this method to create data that is used in your project. This method will be called during the system initialization. An example use is to import initial data like currencies or languages for your project from an csv file.- Overrides:
createProjectDatain classde.hybris.platform.jalo.extension.Extension- Parameters:
params- the parameters provided by user for creation of objects for the extensionjspc- the jsp context; you can use it to write progress information to the jsp page during creation
-