summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/communication/URLReference.java
blob: a4868cdb571f9de8b04317933f26f0110c69f7a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 
@VaadinApache2LicenseForJavaFiles@
 */
package com.vaadin.shared.communication;

import java.io.Serializable;

public class URLReference implements Serializable {

    private String URL;

    /**
     * Returns the URL that this object refers to.
     * <p>
     * Note that the URL can use special protocols like theme://
     * 
     * @return The URL for this reference or null if unknown.
     */
    public String getURL() {
        return URL;
    }

    /**
     * Sets the URL that this object refers to
     * 
     * @param URL
     */
    public void setURL(String URL) {
        this.URL = URL;
    }
}