01: /* tjws - WarDeployer.java
02: * Copyright (C) 1999-2004 Dmitriy Rogatkin. All rights reserved.
03: * Redistribution and use in source and binary forms, with or without
04: * modification, are permitted provided that the following conditions
05: * are met:
06: * 1. Redistributions of source code must retain the above copyright
07: * notice, this list of conditions and the following disclaimer.
08: * 2. Redistributions in binary form must reproduce the above copyright
09: * notice, this list of conditions and the following disclaimer in the
10: * documentation and/or other materials provided with the distribution.
11: * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
12: * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
13: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
14: * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
15: * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
16: * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
17: * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
18: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
19: * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
20: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21: *
22: * $Id: WarDeployer.java,v 1.1 2006/05/10 05:45:21 rogatkin Exp $
23: * Created on Dec 13, 2004
24: */
25:
26: package Acme.Serve;
27:
28: /**
29: * @author dmitriy
30: *
31: *
32: */
33: public interface WarDeployer {
34: void deploy(Serve server);
35: }
|