01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05:
06: package com.opensymphony.xwork;
07:
08: /**
09: * Simple marker interface to indicate an object should <b>not</b> have it's properties copied during chaining.
10: *
11: * @see com.opensymphony.xwork.interceptor.ChainingInterceptor
12: */
13: public interface Unchainable {
14: }
|