Searched refs:getLocale (Results 1 - 25 of 208) sorted by relevance

123456789

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DLocaleContext.java31 public Locale getLocale() { method in class:LocaleContext
39 locale = localeContext.getLocale();
H A DISLocaleContext.java75 * 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 DLocaleContext.java31 public Locale getLocale() { method in class:LocaleContext
39 locale = localeContext.getLocale();
H A DISLocaleContext.java75 * 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 DIHttpServletRequest.java41 Locale getLocale(); method in interface:IHttpServletRequest
H A DHttpServletRequestWrapper.java62 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 DIHttpServletRequest.java41 Locale getLocale(); method in interface:IHttpServletRequest
H A DHttpServletRequestWrapper.java62 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 DLocaleContext.java44 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 DLocaleContext.java44 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 DLocalizedMessage.java67 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 DRestAuthLanguageCallbackHandlerTest.java144 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 DRestAuthLanguageCallbackHandlerTest.java143 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 DLocaleMessageTransformer.java19 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 DLocaleMessageTransformer.java19 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 DOAuth2Request.java111 public abstract Locale getLocale(); method in class:OAuth2Request
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/util/
H A DI18n.java150 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 DI18n.java150 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 DRemoteServletResponse.java259 * 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 DRestletOAuth2Request.java150 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 DAddCircleOfTrustMembers.java86 getCommandManager().getLocale())};
91 getCommandManager().getLocale()),
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/federation/cli/
H A DAddCircleOfTrustMembers.java86 getCommandManager().getLocale())};
91 getCommandManager().getLocale()),
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/
H A DRemoteServletResponse.java259 * 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 DAuthExceptionViewBean.java106 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 DIdentityCommand.java90 getCommandManager().getLocale()),

Completed in 132 milliseconds

123456789