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.services;
06:
07: import java.util.List;
08:
09: public interface SRAPContext {
10: public String getContextID();
11:
12: public String getProfileName();
13:
14: public List readURI2RuleSetMappings();
15:
16: public List readMIME2ParserMappings();
17:
18: public List readURI2ParserMappings();
19:
20: public boolean isMIMEGuessingEnabled();
21:
22: public boolean isURLObfuscationEnabled();
23:
24: public String readObfuscatorSeed();
25:
26: public List readNot2ObscureURIList();
27:
28: public List readNot2RewriteURIList();// BugNo:4766421
29:
30: public List readNot2RewritePagesList();// BugNo:4927210
31:
32: public int getHTTPPort();
33:
34: public int getHTTPSPort();
35:
36: public boolean isUseConsistantProtocol4Gateway(); // RFE No:4818746
37:
38: }// interface SRAPContext
|