KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > web > Url > UrlEncoderIF


1 package org.jahia.clipbuilder.html.web.Url;
2
3 /**
4  * Encode Urls
5  *
6  *@author ktlili
7  */

8 public interface UrlEncoderIF {
9     /**
10      * Encode the url in the URLWrapper
11      */

12     public void encodeUrl();
13
14
15     /**
16      * Gets the EncodedUrl attribute of the UrlEncoderIF object
17      *
18      *@return The EncodedUrl value
19      */

20     public String JavaDoc getEncodedUrl();
21
22
23     /**
24      * Gets the LocalUriResource attribute of the UrlEncoderIF object
25      *
26      *@param resourcePath Description of Parameter
27      *@return The LocalUriResource value
28      */

29     public String JavaDoc getLocalUriResource(String JavaDoc resourcePath);
30
31
32     /**
33      * Gets the LocalUrl attribute of the UrlEncoderIF object
34      *
35      *@param url Description of Parameter
36      *@return The LocalUrl value
37      */

38     public String JavaDoc getLocalUrl(String JavaDoc url);
39
40
41     /**
42      * Gets the Action attribute of the UrlEncoderIF object
43      *
44      *@return The Action value
45      */

46     public String JavaDoc getAction();
47
48
49     /**
50      * Sets the Action attribute of the UrlEncoderIF object
51      *
52      *@param action The new Action value
53      */

54     public void setAction(String JavaDoc action);
55
56
57     /**
58      * Gets the UrlWrapper attribute of the UrlEncoderIF object
59      *
60      *@return The UrlWrapper value
61      */

62     public URLWrapper getUrlWrapper();
63
64
65     /**
66      * Sets the UrlWrapper attribute of the UrlEncoderIF object
67      *
68      *@param urlWrapper The new UrlWrapper value
69      */

70     public void setUrlWrapper(URLWrapper urlWrapper);
71
72 }
73
Popular Tags