Searched defs:jsonValues (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DDeviceJsonUtils.java93 * @param jsonValues The {@code List} of {@link JsonValue} to convert.
98 public List<T> toDeviceSettingValues(List<JsonValue> jsonValues) throws IOException { argument
99 List<T> list = new ArrayList<>(jsonValues.size());
101 for (JsonValue jsonValueItem : jsonValues) {
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DJsonConversionUtils.java88 * @param jsonValues The {@code List} of {@link JsonValue} to convert.
93 public static List<OathDeviceSettings> toOathDeviceSettingValues(List<JsonValue> jsonValues) throws IOException { argument
94 List<OathDeviceSettings> list = new ArrayList<>(jsonValues.size());
96 for (JsonValue jsonValueItem : jsonValues) {

Completed in 37 milliseconds