01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: *
05: * @author Raja Nagendra Kumar, Nagendra.Raja@sun.com
06: */
07:
08: package com.sun.portal.rewriter.util.clip;
09:
10: public interface CLIHandler {
11: public Object executeCommand(CLIPSpec aCLIPSpec, String[] args);
12: }//inteface CLIHandler
|