All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.adminfaces.template.bean.SkinMB Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package com.github.adminfaces.template.bean;

import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
import java.io.Serializable;

/**
 * Created by rmpestano on 07/01/17.
 */
@Named
@SessionScoped
public class SkinMB implements Serializable {

    private String theme = "skin-blue";


    public void changeTheme(String theme){
        this.theme = theme;
    }


    public String getTheme() {
        return theme;
    }

    public void setTheme(String theme) {
        this.theme = theme;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy