KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > cocoon > portal > pluto > ResourceURLProviderImpl


1 /*
2  * Copyright 2004,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.cocoon.portal.pluto;
17
18 import org.apache.pluto.services.information.ResourceURLProvider;
19
20 /**
21  * Create the URL for a resource
22  *
23  * @author <a HREF="mailto:cziegeler@apache.org">Carsten Ziegeler</a>
24  *
25  * @version CVS $Id: ResourceURLProviderImpl.java 30932 2004-07-29 17:35:38Z vgritsenko $
26  */

27 public class ResourceURLProviderImpl
28 implements ResourceURLProvider {
29
30     protected final String JavaDoc base;
31     protected String JavaDoc url;
32     
33     /**
34      * Constructor
35      */

36     public ResourceURLProviderImpl(PortalContextProviderImpl provider) {
37         // TODO What if https is used?
38
this.base = provider.getBaseURLexcludeContext(false);
39     }
40
41     /* (non-Javadoc)
42      * @see org.apache.pluto.services.information.ResourceURLProvider#setAbsoluteURL(java.lang.String)
43      */

44     public void setAbsoluteURL(String JavaDoc path) {
45         this.url = path;
46     }
47     
48     /* (non-Javadoc)
49      * @see org.apache.pluto.services.information.ResourceURLProvider#setFullPath(java.lang.String)
50      */

51     public void setFullPath(String JavaDoc path) {
52         this.url = this.base + path;
53     }
54     
55     /* (non-Javadoc)
56      * @see java.lang.Object#toString()
57      */

58     public String JavaDoc toString() {
59         return this.url;
60     }
61
62 }
63
Popular Tags