Thursday, 15 August 2013

Action and Different Methods




Action
Method Called
Syntax
Adding a MBO
Add() -- This is called when a new Mbo is added to the Mboset collection
public void add() throws MXException, RemoteException
Deleting a MBO
Delete() --  Mark the object to be deleted with all the normal security checks
public void delete() throws MXException, RemoteException
Duplicating a MBO
Duplicate() -- Duplicate the Mbo 
public MboRemote duplicate() throws MXException, RemoteException
Validating a MBO
validate() -- Validate the object
public final void validate() throws MXException, RemoteException
Save a MBO
Save() -- Adds a new Mbo to this set at the beginning, and sets the current Mbo position to the Mbo just added
public void save() throws MXException, RemoteException
Initiating a MBO
Init() -- Called by the framework when the Mbo has been constructed and the MboValues have been initialized
public void init() throws MXException
Application validation
appValidate() -- Pre-save validation method. Programmer can override with specific rules
public void appValidate() throws MXException, RemoteException


No comments:

Post a Comment