KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > appclient > jws > WebPath


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23
24 package com.sun.enterprise.appclient.jws;
25
26 /**
27  *Provides a convenient way to give a complete path and get back the
28  *constituent context root and the remaining path.
29  *
30  * @author tjquinn
31  */

32 public class WebPath {
33     
34     private String JavaDoc contextRoot;
35     
36     private String JavaDoc path;
37     
38     /** Creates a new instance of WebPath */
39     public WebPath(String JavaDoc fullPath) {
40         /*
41          *The context root should start with a slash. Find the first one
42          *after that, which will separate the context root (for web
43          *container purposes) from the path.
44          */

45         int secondSlash = fullPath.indexOf('/', 1);
46         if (secondSlash < 0) {
47             contextRoot = fullPath;
48             path = "";
49         } else {
50             contextRoot = fullPath.substring(0, secondSlash);
51             path = fullPath.substring(secondSlash);
52         }
53     }
54
55     public String JavaDoc contextRoot() {
56         return contextRoot;
57     }
58
59     public String JavaDoc path() {
60         return path;
61     }
62
63     public String JavaDoc toString() {
64         return "WebPathPath: context root = \"" + contextRoot + "\", path = \"" + path + "\'";
65     }
66 }
67
Popular Tags