dps.webapplication.i18n.SessionLocale Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dps.webapplication Show documentation
Show all versions of dps.webapplication Show documentation
Common classes for webapplications
package dps.webapplication.i18n;
import javax.enterprise.context.SessionScoped;
import javax.inject.Inject;
import javax.inject.Named;
import java.io.Serializable;
@Named
@SessionScoped
public class SessionLocale extends AbstractLocale implements Serializable {
@Inject
DefaultLocale defaultLocale;
@Override
AbstractLocale getParentLocale() {
return defaultLocale;
}
}