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.rewriter;
06:
07: import com.sun.portal.rewriter.util.uri.PageSpec;
08:
09: /**
10: * Interface, which needs to be implemented to customise the rewriter component
11: *
12: * @version 1.0 12/15/2001
13: * @author Raja Nagendra Kumar, Nagendra.Raja@sun.com
14: */
15: public interface Translator extends TranslatorHook {
16: public PageSpec getPageSpec();
17:
18: public LookAheadInfo getLookAheadInfo();
19:
20: public String translate(final String aOriginalURI);
21:
22: }//interface Translator
|