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