001/*
002 * $RCSfile: UpdateTrigger.java,v $
003 * $Revision: 1.1.2.1 $ $Date: 2010/05/26 02:46:42 $
004 * 
005 * Copyright 2010 Kabira Technologies, Inc. All rights reserved.
006 */
007
008package com.kabira.platform;
009
010/**
011 * Indicate this class implements an update trigger.
012 * Update triggers are invoked when an instance is modified.
013 * This interface will only affect Managed types.
014 */
015public interface UpdateTrigger
016{
017    /**
018     * Update trigger callback method.
019     */
020    public void uponUpdate();
021}