01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.object.applicator;
06:
07: public interface TCURL {
08: public void __tc_set_logical(String protocol, String host,
09: int port, String authority, String userInfo, String path,
10: String query, String ref);
11: }
|