com.mentata.sg8
Interface SG8Mutable


public interface SG8Mutable

SG8 objects that use modification gateway features. This interface for SG8 objects declares placeholder methods for performing pre- and post- processing of requests for entry modifications. It is required for use within the update and link 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 postUpdate()
          Processes object after updates.
 String[] preUpdate()
          Preprocesses object prior to updates.
 

Method Detail

preUpdate

public String[] preUpdate()
                   throws SG8Exception
Preprocesses object prior to updates.

Returns:
the names of attributes that were additionally modified
Throws:
SG8Exception

postUpdate

public void postUpdate()
                throws SG8Exception
Processes object after updates.

Throws:
SG8Exception