1 /***
2 * JFoxSOAF, Service-Oriented Application Framework
3 *
4 * Copyright (C) www.huihoo.org
5 *
6 * Distributable under GNU LGPL For more information, please visit:
7 * http://www.huihoo.org/jfox/jfoxsoaf
8 */
9
10 package org.huihoo.jfox.soaf.container;
11
12 /***
13 * Test Model Kissable
14 *
15 * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
16 * @version $Revision: 1.1 $ $Date: 2004/10/18 12:58:09 $
17 * @version Revision: 1.0
18 */
19
20 public interface Kissable {
21
22 void kiss(Object kisser);
23
24 }