001// 002// Name 003// $RCSfile: UpdateTrigger.java,v $ 004// 005// Copyright 006// Copyright 2010-2012 Cloud Software Group, Inc. ALL RIGHTS RESERVED. 007// Cloud Software Group, Inc. Confidential Information 008// 009// History 010// $Revision: 1.1.2.3 $ $Date: 2014/11/25 16:08:16 $ 011 012package com.kabira.platform; 013 014/** 015 * @deprecated Use secondary store notifiers instead. 016 */ 017@Deprecated 018public interface UpdateTrigger 019{ 020 /** 021 * Update trigger callback method. 022 */ 023 public void uponUpdate(); 024}