1 /* 2 * Copyright 2004 (C) TJDO. 3 * All rights reserved. 4 * 5 * This software is distributed under the terms of the TJDO License version 1.0. 6 * See the terms of the TJDO License in the documentation provided with this software. 7 * 8 * $Id: PostWriteProcessing.java,v 1.1 2004/02/01 18:22:42 jackknifebarber Exp $ 9 */ 10 11 package com.triactive.jdo.store; 12 13 14 /** 15 * A marker interface indicating a column mapping that performs additional tasks 16 * after values are written to the database. 17 * 18 * @author <a HREF="mailto:mmartin5@austin.rr.com">Mike Martin</a> 19 * @version $Revision: 1.1 $ 20 */ 21 22 public interface PostWriteProcessing 23 { 24 } 25