
com.github.adminfaces.template.bean.SkinMB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of admin-template Show documentation
Show all versions of admin-template Show documentation
A responsive JSF template based on Bootstrap and Admin LTE.
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