01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.rproxy.rewriter;
06:
07: import com.sun.portal.rewriter.PortalRewriterPostInstallTasks;
08: import com.sun.portal.rewriter.RewriterModule;
09:
10: /**
11: * This class handles all the post install tasks of rewriter at SRA end.
12: */
13: public final class SRASupportRewriterPostInstallTasks {
14: public static void main(String[] args) throws Exception {
15: RewriterModule.initIDSAME(args[0], args[1]);
16: PortalRewriterPostInstallTasks
17: .doInstallTimeUpload(SRAPRewriterModule.SRAP_RULESET_SPEC);
18: }// main()
19:
20: }// class SRASupportRewriterPostInstallTasks
|