01: /*
02: * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.instance.sra.leaf;
07:
08: //
09:
10: import com.sun.install.products.InstallLeaf;
11: import com.sun.wizards.core.WizardState;
12:
13: import java.util.Vector;
14:
15: //
16:
17: public class Instances extends InstallLeaf {
18: public Instances() {
19: super ();
20: }
21:
22: public boolean install(WizardState ws) {
23: return true;
24: }
25:
26: public boolean uninstall(WizardState ws) {
27: return true;
28: }
29:
30: public void addRuntimeResources(Vector v) {
31: v.addElement("com.sun.portal.instance.sra.leaf.Instances");
32: }
33: }
|