com.mentata.sg8
Interface SG8Makable


public interface SG8Makable

SG8 objects that use creation and deletion gateway features. This interface for SG8 objects declares placeholder methods for performing pre- and post- processing of requests for entry creation and deletion. It is required for use within the create and delete servlets. SG8 objects already contain empty implementations for the methods of this interface, but are not declared to implement the interface by default.

Since:
0.7
Author:
Jon Roberts

Method Summary
 void postCreate()
          Processes object after creation.
 void postDelete()
          Processes object after deletion.
 void preCreate()
          Preprocesses object prior to creation.
 void preDelete()
          Preprocesses object prior to deletion.
 

Method Detail

preCreate

public void preCreate()
               throws SG8Exception
Preprocesses object prior to creation.

Throws:
SG8Exception

postCreate

public void postCreate()
                throws SG8Exception
Processes object after creation.

Throws:
SG8Exception

preDelete

public void preDelete()
               throws SG8Exception
Preprocesses object prior to deletion.

Throws:
SG8Exception

postDelete

public void postDelete()
                throws SG8Exception
Processes object after deletion.

Throws:
SG8Exception