| /forgerock/openam-v13/openam-server-only/src/main/webapp/js/ |
| H A D | openam.js | 14 * See the License for the specific language governing 30 var language; 33 // IE default language for the browser 34 language = navigator.browserLanguage 36 // IE browser language set by the user 37 language = navigator.userLanguage 39 // IE operating system language 40 language = navigator.systemLanguage 41 } else if (navigator.language) { 42 // Netscape language snif [all...] |
| /forgerock/openam/openam-server-only/src/main/webapp/js/ |
| H A D | openam.js | 14 * See the License for the specific language governing 30 var language; 33 // IE default language for the browser 34 language = navigator.browserLanguage 36 // IE browser language set by the user 37 language = navigator.userLanguage 39 // IE operating system language 40 language = navigator.systemLanguage 41 } else if (navigator.language) { 42 // Netscape language snif [all...] |
| /forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
| H A D | ScriptObject.java | 7 * specific language governing permission and limitations under the License. 25 * Representation of a script in some scripting language. 34 private final ScriptingLanguage language; field in class:ScriptObject 38 * Constructs a script object with the given name, script body, language and variable bindings. 42 * @param language the language that the script is written in. 45 public ScriptObject(final String name, final String script, final ScriptingLanguage language, argument 47 Reject.ifNull(name, script, language); 50 this.language = language; 61 ScriptObject(final String name, final String script, final ScriptingLanguage language) argument [all...] |
| /forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
| H A D | ScriptObject.java | 7 * specific language governing permission and limitations under the License. 25 * Representation of a script in some scripting language. 34 private final ScriptingLanguage language; field in class:ScriptObject 38 * Constructs a script object with the given name, script body, language and variable bindings. 42 * @param language the language that the script is written in. 45 public ScriptObject(final String name, final String script, final ScriptingLanguage language, argument 47 Reject.ifNull(name, script, language); 50 this.language = language; 61 ScriptObject(final String name, final String script, final ScriptingLanguage language) argument [all...] |
| /forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/ |
| H A D | RestAuthLanguageCallbackHandler.java | 7 * specific language governing permission and limitations under the License. 63 * @param language The language. 67 private Locale createLocale(String language, String country) { argument 70 locale = new Locale(language, country); 73 locale = new Locale(language); 118 String language = null; 128 language = value; 134 callback.setLocale(createLocale(language, country));
|
| /forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/authn/callbackhandlers/ |
| H A D | RestAuthLanguageCallbackHandler.java | 7 * specific language governing permission and limitations under the License. 63 * @param language The language. 67 private Locale createLocale(String language, String country) { argument 70 locale = new Locale(language, country); 73 locale = new Locale(language); 118 String language = null; 128 language = value; 134 callback.setLocale(createLocale(language, country));
|
| /forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/service/ |
| H A D | ScriptConfiguration.java | 7 * specific language governing permission and limitations under the License.
38 private final SupportedScriptingLanguage language;
field in class:ScriptConfiguration 55 private SupportedScriptingLanguage language;
field in class:ScriptConfiguration.Builder 109 * Set the language for the {@code ScriptConfiguration}.
110 * @param language The language in which the script is written.
113 public Builder setLanguage(SupportedScriptingLanguage language) {
argument 114 this.language = language;
193 if (language [all...] |
| /forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/service/ |
| H A D | ScriptConfiguration.java | 7 * specific language governing permission and limitations under the License.
40 private final SupportedScriptingLanguage language;
field in class:ScriptConfiguration 57 private SupportedScriptingLanguage language;
field in class:ScriptConfiguration.Builder 111 * Set the language for the {@code ScriptConfiguration}.
112 * @param language The language in which the script is written.
115 public Builder setLanguage(SupportedScriptingLanguage language) {
argument 116 this.language = language;
195 if (language [all...] |
| /forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/scripts/ |
| H A D | ScriptModel.js | 7 * specific language governing permission and limitations under the License. 31 language: "", 41 if (attrs.language === "") {
|
| /forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/scripts/ |
| H A D | ScriptModel.js | 7 * specific language governing permission and limitations under the License. 31 language: "", 41 if (attrs.language === "") {
|
| /forgerock/openidm-v4/openidm-workflow-activiti/src/main/java/org/forgerock/openidm/workflow/activiti/impl/ |
| H A D | OpenIDMResolverFactory.java | 7 * specific language governing permission and limitations under the License. 55 String language = "groovy"; 97 Field languageField = cls.getDeclaredField("language"); 99 language = (String) languageField.get(behaviour); 108 language = processClassDelegate(variableScope, (ClassDelegate) executionListener); 122 language = processClassDelegate(variableScope, (ClassDelegate) taskListener); 127 LoggerFactory.getLogger(OpenIDMResolverFactory.class).info("Script language could not be determined, using default groovy instead"); 135 script = scriptRegistry.takeScript(new ScriptName("ActivitiScript", language)); 138 scriptJson.put("type", language); 151 * Processes a ClassDelegate, fetching the language fiel [all...] |
| /forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/ |
| H A D | ISResourceBundle.java | 14 * See the License for the specific language governing 121 * locale first (language and country) and if not found than language 138 String language = locale.getLanguage(); 141 if (language != null && language.length() > 0) { 142 loc = language; 156 * locale first (language and country) and if not found than language 164 * String identifying the language an [all...] |
| /forgerock/openam/openam-core/src/main/java/com/sun/identity/common/ |
| H A D | ISResourceBundle.java | 14 * See the License for the specific language governing 121 * locale first (language and country) and if not found than language 138 String language = locale.getLanguage(); 141 if (language != null && language.length() > 0) { 142 loc = language; 156 * locale first (language and country) and if not found than language 164 * String identifying the language an [all...] |
| /forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/ |
| H A D | ScriptExceptionMappingHandlerTest.java | 7 * specific language governing permission and limitations under the License. 78 private Context getHttpServerContext(String ...language) throws Exception { argument 81 Collections.singletonMap(ServerContextUtils.ACCEPT_LANGUAGE, Arrays.asList(language))),
|
| /forgerock/openam/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/ |
| H A D | ScriptExceptionMappingHandlerTest.java | 7 * specific language governing permission and limitations under the License. 78 private Context getHttpServerContext(String ...language) throws Exception { argument 81 Collections.singletonMap(ServerContextUtils.ACCEPT_LANGUAGE, Arrays.asList(language))),
|
| /forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/scripts/ |
| H A D | EditScriptView.js | 7 * specific language governing permission and limitations under the License. 55 "change input[name=language]": "onChangeLanguage", 114 "uuid", "name", "description", "language", "context", "script"); 264 language = this.data.entity.language, 270 language: language 388 this.data.entity.language = this.data.languages[0].id; 390 this.data.entity.language = ""; 397 self.data.entity.language [all...] |
| /forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/realms/scripts/ |
| H A D | EditScriptView.js | 7 * specific language governing permission and limitations under the License. 56 "change input[name=language]": "onChangeLanguage", 113 "uuid", "name", "description", "language", "context", "script"); 228 return this.data.entity.name && this.data.entity.context && this.data.entity.language; 262 language = this.data.entity.language, 268 language 378 this.data.entity.language = this.data.languages[0].id; 380 this.data.entity.language = ""; 387 self.data.entity.language [all...] |
| /forgerock/openam-v13/openam-scripting/src/main/js/ |
| H A D | deviceIdMatch-client-side.js | 14 * See the License for the specific language governing 159 if (navigator.language) { 160 devicePrint.language = navigator.language;
|
| /forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/ |
| H A D | ScriptExceptionTest.java | 7 * specific language governing permission and limitations under the License. 29 final String language = "TEST_LANGUAGE"; field in class:ScriptExceptionTest 45 se = new ScriptException(LANGUAGE_NOT_SUPPORTED, language); 47 assertThat(se.getMessage()).isEqualTo(format("Scripting language not supported: {0}", language)); 102 assertThat(se.getMessage()).isEqualTo("Scripting language must be specified");
|
| H A D | GroovyValidatorTest.java | 7 * specific language governing permission and limitations under the License. 115 final ScriptingLanguage language = SupportedScriptingLanguage.GROOVY; 118 return new ScriptObject(name, script, language, null);
|
| H A D | JavaScriptValidatorTest.java | 7 * specific language governing permission and limitations under the License. 109 final ScriptingLanguage language = SupportedScriptingLanguage.JAVASCRIPT; 112 return new ScriptObject(name, script, language, null);
|
| /forgerock/openam/openam-scripting/src/main/js/ |
| H A D | deviceIdMatch-client-side.js | 14 * See the License for the specific language governing 159 if (navigator.language) { 160 devicePrint.language = navigator.language;
|
| /forgerock/openam/openam-scripting/src/test/java/org/forgerock/openam/scripting/ |
| H A D | ScriptExceptionTest.java | 7 * specific language governing permission and limitations under the License. 29 final String language = "TEST_LANGUAGE"; field in class:ScriptExceptionTest 45 se = new ScriptException(LANGUAGE_NOT_SUPPORTED, language); 47 assertThat(se.getMessage()).isEqualTo(format("Scripting language not supported: {0}", language)); 102 assertThat(se.getMessage()).isEqualTo("Scripting language must be specified");
|
| H A D | GroovyValidatorTest.java | 7 * specific language governing permission and limitations under the License. 115 final ScriptingLanguage language = SupportedScriptingLanguage.GROOVY; 118 return new ScriptObject(name, script, language, null);
|
| H A D | JavaScriptValidatorTest.java | 7 * specific language governing permission and limitations under the License. 109 final ScriptingLanguage language = SupportedScriptingLanguage.JAVASCRIPT; 112 return new ScriptObject(name, script, language, null);
|