Searched refs:deviceName (Results 1 - 19 of 19) sorted by relevance

/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/dashboard/views/
H A DDeviceDetailsDialog.js25 deviceName: device.deviceName,
31 title: device.deviceName,
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/
H A DOathDeviceSettings.java33 private String deviceName; field in class:OathDeviceSettings
49 * @param deviceName An arbitrary identifier for the device. Non-null value.
53 public OathDeviceSettings(String sharedSecret, String deviceName, long lastLogin, int counter) { argument
55 setDeviceName(deviceName);
95 * @param deviceName The identifier. Can not be null.
97 public void setDeviceName(String deviceName) { argument
98 Reject.ifNull(deviceName, "deviceName can not be null.");
99 this.deviceName = deviceName;
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/oath/
H A DOathDeviceSettings.java33 private String deviceName; field in class:OathDeviceSettings
49 * @param deviceName An arbitrary identifier for the device. Non-null value.
53 public OathDeviceSettings(String sharedSecret, String deviceName, long lastLogin, int counter) { argument
56 setDeviceName(deviceName);
74 * @param deviceName The identifier. Can not be null.
76 public void setDeviceName(String deviceName) { argument
77 Reject.ifNull(deviceName, "deviceName can not be null.");
78 this.deviceName = deviceName;
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/push/
H A DPushDeviceSettings.java33 private String deviceName; // name of the device granted by openam, currently unused field in class:PushDeviceSettings
52 * @param deviceName An arbitrary identifier for the device. Non-null value.
54 public PushDeviceSettings(String sharedSecret, String deviceName) { argument
57 setDeviceName(deviceName);
94 * @param deviceName The identifier. Can not be null.
96 public void setDeviceName(String deviceName) { argument
97 Reject.ifTrue(StringUtils.isBlank(deviceName), "deviceName can not be null.");
98 this.deviceName = deviceName;
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/
H A DMAPDeviceProfileViewBean.java74 String deviceName; field in class:MAPDeviceProfileViewBean
146 if ((deviceName == null) || (deviceName.trim().length() == 0)) {
147 deviceName = req.getParameter("MAPDeviceProfile." + TF_DEVICE_NAME);
150 boolean init = (deviceName != null) && (deviceName.trim().length() > 0);
161 createPropertyModel(deviceName, classification);
167 private void createPropertyModel(String deviceName, String classification) { argument
171 model.getProfilePropertyXML(deviceName, classification));
183 setDisplayFieldValue(TF_DEVICE_NAME, deviceName);
[all...]
H A DMAPDuplicationDeviceViewBean.java62 String deviceName; field in class:MAPDuplicationDeviceViewBean
134 if (deviceName != null) {
135 propertySheetModel.setValue("tfDeviceUserAgent", deviceName);
164 String deviceName = (String)propertySheetModel.getValue(
171 } else if (deviceName.trim().length() == 0) {
178 model.cloneDevice(origClientType, clientType, deviceName);
H A DMAPClientManagerViewBean.java270 vb.deviceName = name;
301 private void deleteDevice(String deviceName, String message) { argument
305 model.removeClient(deviceName);
327 vb.deviceName = model.getDeviceNamePrefix() +
H A DMAPCreateDeviceTwoViewBean.java241 vb.deviceName = (String)AMAdminUtils.getValue((Set)values.get(
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/
H A DMAPDeviceProfileViewBean.java74 String deviceName; field in class:MAPDeviceProfileViewBean
146 if ((deviceName == null) || (deviceName.trim().length() == 0)) {
147 deviceName = req.getParameter("MAPDeviceProfile." + TF_DEVICE_NAME);
150 boolean init = (deviceName != null) && (deviceName.trim().length() > 0);
161 createPropertyModel(deviceName, classification);
167 private void createPropertyModel(String deviceName, String classification) { argument
171 model.getProfilePropertyXML(deviceName, classification));
183 setDisplayFieldValue(TF_DEVICE_NAME, deviceName);
[all...]
H A DMAPDuplicationDeviceViewBean.java62 String deviceName; field in class:MAPDuplicationDeviceViewBean
134 if (deviceName != null) {
135 propertySheetModel.setValue("tfDeviceUserAgent", deviceName);
164 String deviceName = (String)propertySheetModel.getValue(
171 } else if (deviceName.trim().length() == 0) {
178 model.cloneDevice(origClientType, clientType, deviceName);
H A DMAPClientManagerViewBean.java270 vb.deviceName = name;
301 private void deleteDevice(String deviceName, String message) { argument
305 model.removeClient(deviceName);
327 vb.deviceName = model.getDeviceNamePrefix() +
H A DMAPCreateDeviceTwoViewBean.java241 vb.deviceName = (String)AMAdminUtils.getValue((Set)values.get(
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DMAPCreateDeviceModel.java77 * @param deviceName Device Name.
83 String deviceName
H A DMAPCreateDeviceModelImpl.java262 * @param deviceName Device Name.
268 String deviceName
286 set.add(deviceName);
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/service/model/
H A DMAPCreateDeviceModel.java77 * @param deviceName Device Name.
83 String deviceName
H A DMAPCreateDeviceModelImpl.java262 * @param deviceName Device Name.
268 String deviceName
286 set.add(deviceName);
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/test/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DJsonConversionUtilsTest.java61 private OathDeviceSettings getOathDeviceSettingsObject(String sharedSecret, String deviceName, long lastLogin, argument
64 OathDeviceSettings oathDeviceSettings = new OathDeviceSettings(sharedSecret, deviceName, lastLogin, counter);
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/dashboard/views/
H A DDeviceDetailsDialog.js31 title: device.deviceName,
/forgerock/openam/openam-core-rest/src/test/java/org/forgerock/openam/core/rest/devices/
H A DDeviceJsonUtilsTest.java63 private OathDeviceSettings getDeviceSettingsObject(String sharedSecret, String deviceName, long lastLogin, argument
66 OathDeviceSettings oathDeviceSettings = new OathDeviceSettings(sharedSecret, deviceName, lastLogin, counter);

Completed in 98 milliseconds