01: /*
02: * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: //
07: package com.sun.portal.ffj.deploy;
08:
09: //
10: import com.sun.portal.ffj.util.ParEntry;
11:
12: //
13: public interface Deploy {
14: //
15: public static final String PACKAGE_SEPARATOR = ".";
16:
17: //
18: public boolean deploy(ParEntry pe) throws DeployException;
19:
20: //
21: //
22: //
23: }
|