01: /*
02: * $Id: org.eclipse.jdt.ui.prefs 5004 2006-03-17 20:47:08 -0800 (Fri, 17 Mar 2006) eelco12 $
03: * $Revision: 5004 $
04: * $Date: 2006-03-17 20:47:08 -0800 (Fri, 17 Mar 2006) $
05: *
06: * ==============================================================================
07: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
08: * use this file except in compliance with the License. You may obtain a copy of
09: * the License at
10: *
11: * http://www.apache.org/licenses/LICENSE-2.0
12: *
13: * Unless required by applicable law or agreed to in writing, software
14: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16: * License for the specific language governing permissions and limitations under
17: * the License.
18: */
19: package wicket.request.target.coding;
20:
21: /**
22: * Temporary interface to make the transition to 2.0, where
23: * {@link IRequestTargetUrlCodingStrategy} has a method that reviels the mount
24: * path.
25: *
26: * @author eelcohillenius
27: */
28: public interface IMountableRequestTargetUrlCodingStrategy extends
29: IRequestTargetUrlCodingStrategy {
30:
31: /**
32: * Returns the path of the url where this request target is mounted on.
33: *
34: * @return String The path of the url
35: */
36: String getMountPath();
37: }
|