/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/ |
H A D | LocaleContext.java | 31 public Locale getLocale() { method in class:LocaleContext 39 locale = localeContext.getLocale();
|
H A D | ISLocaleContext.java | 75 * parameters whenever they are available and use getLocale method to get the 96 * is.getLocale(); 185 initLocale = Locale.getLocale(initLocaleStr); 231 setLocale(level, Locale.getLocale(loc)); 336 setLocale(USER_PREFERRED_LOCALE, Locale.getLocale(loc)); 344 public java.util.Locale getLocale() { method in class:ISLocaleContext 378 setLocale(CORE_AUTH_LOCALE, Locale.getLocale(locale));
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/ |
H A D | LocaleContext.java | 31 public Locale getLocale() { method in class:LocaleContext 39 locale = localeContext.getLocale();
|
H A D | ISLocaleContext.java | 75 * parameters whenever they are available and use getLocale method to get the 96 * is.getLocale(); 185 initLocale = Locale.getLocale(initLocaleStr); 231 setLocale(level, Locale.getLocale(loc)); 336 setLocale(USER_PREFERRED_LOCALE, Locale.getLocale(loc)); 344 public java.util.Locale getLocale() { method in class:ISLocaleContext 378 setLocale(CORE_AUTH_LOCALE, Locale.getLocale(locale));
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/setup/ |
H A D | IHttpServletRequest.java | 41 Locale getLocale(); method in interface:IHttpServletRequest
|
H A D | HttpServletRequestWrapper.java | 62 public Locale getLocale() { method in class:HttpServletRequestWrapper 63 return (req != null) ? req.getLocale() : Locale.getDefault();
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/setup/ |
H A D | IHttpServletRequest.java | 41 Locale getLocale(); method in interface:IHttpServletRequest
|
H A D | HttpServletRequestWrapper.java | 62 public Locale getLocale() { method in class:HttpServletRequestWrapper 63 return (req != null) ? req.getLocale() : Locale.getDefault();
|
/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/rest/resource/ |
H A D | LocaleContext.java | 44 public Locale getLocale() { method in class:LocaleContext 49 locale = localeContext.getLocale();
|
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/rest/resource/ |
H A D | LocaleContext.java | 44 public Locale getLocale() { method in class:LocaleContext 49 locale = localeContext.getLocale();
|
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/arch/ |
H A D | LocalizedMessage.java | 67 if(getLocale() != null) { 68 result = toString(getLocale()); 155 private Locale getLocale() { method in class:LocalizedMessage
|
/forgerock/openam-v13/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/callbackhandlers/ |
H A D | RestAuthLanguageCallbackHandlerTest.java | 144 Assert.assertNotNull(convertedLanguageCallback.getLocale()); 145 assertEquals("language", convertedLanguageCallback.getLocale().getLanguage()); 146 assertEquals("COUNTRY", convertedLanguageCallback.getLocale().getCountry()); 186 Assert.assertNotNull(convertedLanguageCallback.getLocale()); 187 assertEquals("language", convertedLanguageCallback.getLocale().getLanguage()); 188 assertEquals("COUNTRY", convertedLanguageCallback.getLocale().getCountry());
|
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/authn/callbackhandlers/ |
H A D | RestAuthLanguageCallbackHandlerTest.java | 143 Assert.assertNotNull(convertedLanguageCallback.getLocale()); 144 assertEquals("language", convertedLanguageCallback.getLocale().getLanguage()); 145 assertEquals("COUNTRY", convertedLanguageCallback.getLocale().getCountry()); 182 Assert.assertNotNull(convertedLanguageCallback.getLocale()); 183 assertEquals("language", convertedLanguageCallback.getLocale().getLanguage()); 184 assertEquals("COUNTRY", convertedLanguageCallback.getLocale().getCountry());
|
/forgerock/openam-v13/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/config/beans/ |
H A D | LocaleMessageTransformer.java | 19 import static com.sun.identity.shared.locale.Locale.getLocale; 56 messageTranslations.put(getLocale(localeString), message);
|
/forgerock/openam/openam-selfservice/src/main/java/org/forgerock/openam/selfservice/config/beans/ |
H A D | LocaleMessageTransformer.java | 19 import static com.sun.identity.shared.locale.Locale.getLocale; 56 messageTranslations.put(getLocale(localeString), message);
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/ |
H A D | OAuth2Request.java | 111 public abstract Locale getLocale(); method in class:OAuth2Request
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/util/ |
H A D | I18n.java | 150 public static java.util.Locale getLocale(String stringformat) { method in class:I18n 184 getLocale(stringformat), ucl); 187 getLocale(stringformat)); 343 mf.setLocale(getLocale(l)); 363 mf.setLocale(getLocale(l)); 386 mf.setLocale(getLocale(l));
|
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/util/ |
H A D | I18n.java | 150 public static java.util.Locale getLocale(String stringformat) { method in class:I18n 184 getLocale(stringformat), ucl); 187 getLocale(stringformat)); 343 mf.setLocale(getLocale(l)); 363 mf.setLocale(getLocale(l)); 386 mf.setLocale(getLocale(l));
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/ |
H A D | RemoteServletResponse.java | 259 * The default behavior of this method is to return getLocale() 264 public Locale getLocale() { method in class:RemoteServletResponse 265 return response != null ? this.response.getLocale() : locale;
|
/forgerock/openam-v13/openam-oauth2-common/oauth2-restlet/src/main/java/org/forgerock/oauth2/restlet/ |
H A D | RestletOAuth2Request.java | 150 public Locale getLocale() { method in class:RestletOAuth2Request 151 return ServletUtils.getRequest(request).getLocale();
|
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/ |
H A D | AddCircleOfTrustMembers.java | 86 getCommandManager().getLocale())}; 91 getCommandManager().getLocale()),
|
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/ |
H A D | AddCircleOfTrustMembers.java | 86 getCommandManager().getLocale())}; 91 getCommandManager().getLocale()),
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/ |
H A D | RemoteServletResponse.java | 259 * The default behavior of this method is to return getLocale() 264 public Locale getLocale() { method in class:RemoteServletResponse 265 return response != null ? this.response.getLocale() : locale;
|
/forgerock/openam-v13/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/ |
H A D | AuthExceptionViewBean.java | 106 com.sun.identity.shared.locale.Locale.getLocale( 107 AuthUtils.getLocale(ac)); 142 com.sun.identity.shared.locale.Locale.getLocale(AuthUtils.getLocale(ac));
|
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/idrepo/ |
H A D | IdentityCommand.java | 90 getCommandManager().getLocale()),
|