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

dps.webapplication.i18n.SessionLocale Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy