Changeset 4214


Ignore:
Timestamp:
01/06/14 08:34:21 (10 years ago)
Author:
twagoo
Message:

Made Theme serializable; session contained objects need to be serializable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/to-wicket-1.6-twagoo/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/Theme.java

    r4201 r4214  
    1 
    21package eu.clarin.cmdi.vlo;
    32
    43import eu.clarin.cmdi.vlo.config.VloConfig;
     4import java.io.Serializable;
    55
    66/**
     
    1111 * partner link map relating coordinates in the right image to partner links
    1212 */
    13 public class Theme {
     13public class Theme implements Serializable {
    1414
    15     public String name, pageTitle, topLeftImage, topRightImage, cssFile,
     15    public final String name, pageTitle, topLeftImage, topRightImage, cssFile,
    1616            partnerLinkMap;
    1717
     
    1919     * Compose a theme<br><br>
    2020     *
    21      * @param name the name of the theme to be composed
     21     * @param themeName the name of the theme to be composed
    2222     */
    2323    public Theme(String themeName) {
     
    5959     * Compose a map to be included in the HTML document, designating the
    6060     * positions of the links to partner web sites
    61      * 
     61     *
    6262     * @return the map
    6363     */
Note: See TracChangeset for help on using the changeset viewer.