Searched refs:property (Results 1 - 25 of 593) sorted by relevance

1234567891011>>

/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/models/schemaTransforms/
H A DtransformEnumTypeToString.js21 * @param {Object} property Property to transform
23 return function transformEnumTypeToString (property) {
24 if (property.hasOwnProperty("enum")) {
25 property.type = "string";
H A DtransformBooleanTypeToCheckboxFormat.js21 * @param {Object} property Property to transform
23 return function transformBooleanTypeToCheckboxFormat (property) {
24 if (property.hasOwnProperty("type") && property.type === "boolean") {
25 property.format = "checkbox";
H A DwarnOnInferredPasswordWithoutFormat.js20 * Warns if a property is inferred to be a password and does not have a format of password
21 * @param {Object} property Property to transform
22 * @param {String} name Raw property name
24 return function warnOnInferredPasswordWithoutFormat (property, name) {
26 const hasFormat = property.format === "password";
27 if (property.type === "string" && possiblePassword && !hasFormat) {
28 console.error(`[cleanJSONSchema] Detected (inferred) a password property "${name}" ` +
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/models/
H A DcleanJSONSchema.js36 _.forEach(object.properties, (property, key) => {
38 callback(property, key);
41 if (isObjectType(property)) {
42 eachProperty(property, callbacks);
50 * @param {Object} property Property to transform
52 function transformBooleanTypeToCheckboxFormat (property) {
53 if (property.hasOwnProperty("type") && property.type === "boolean") {
54 property.format = "checkbox";
61 * @param {Object} property Propert
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/util/
H A DAdminAbstractView.js27 compareObjects: function(property, obj1, obj2) {
29 _.each(val1, function(property, key) {
30 if (_.isEmpty(property) && !_.isNumber(property) && !_.isBoolean(property)) {
35 _.each(val2, function(property, key) {
36 if (_.isEmpty(property) && !_.isNumber(property) && !_.isBoolean(property)) {
44 return compare(obj1[property], obj
[all...]
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAAccountTableViewCell.h29 @property (weak, nonatomic) IBOutlet UIImageView *image;
33 @property (weak, nonatomic) IBOutlet UILabel *issuer;
37 @property (weak, nonatomic) IBOutlet UILabel *accountName;
41 @property (weak, nonatomic) IBOutlet UIImageView *firstMechanismIcon;
45 @property (weak, nonatomic) IBOutlet UIImageView *secondMechanismIcon;
50 @property (nonatomic, retain) M13BadgeView *notificationsBadge;
H A DFRACircleProgressView.h27 @property (nonatomic) UIColor *progressColor;
31 @property (nonatomic) float progress;
H A DFRAAccountTableViewController.h38 @property (nonatomic) FRAIdentity *identity;
42 @property (weak, nonatomic) IBOutlet UIImageView *image;
46 @property (weak, nonatomic) IBOutlet UIView *backgroundView;
50 @property (weak, nonatomic) IBOutlet UILabel *issuer;
54 @property (weak, nonatomic) IBOutlet UILabel *accountName;
58 @property (weak, nonatomic) IBOutlet FRAOathMechanismTableViewCell *oathTableViewCell;
62 @property (weak, nonatomic) IBOutlet FRAPushMechanismTableViewCell *pushTableViewCell;
66 @property (strong, nonatomic) NSTimer *timer;
H A DFRAModelObjectProtected.h28 @property (nonatomic, strong) FRAIdentityDatabase* database;
34 * NB: This property only indicates whether or not a record has been persisted. It
37 @property (nonatomic, getter=isStored) BOOL stored;
H A DFRAPushMechanismTableViewCell.h31 @property (strong, nonatomic) FRAPushMechanismTableViewCellController *delegate;
36 @property (weak, nonatomic) IBOutlet M13BadgeView *notificationsBadge;
H A DFRABlockActionSheet.h30 @property (nonatomic, copy) void (^callback)(NSInteger offset);
H A DFRAOathMechanismTableViewCell.h28 @property (strong, nonatomic) FRAOathMechanismTableViewCellController *delegate;
33 @property (weak, nonatomic) IBOutlet UILabel *code;
37 @property (weak, nonatomic) IBOutlet FRACircleProgressView *totpCodeProgress;
41 @property (weak, nonatomic) IBOutlet UIButton *hotpRefreshButton;
H A DFRANotificationTableViewCell.h29 @property (weak, nonatomic) IBOutlet UIImageView *image;
33 @property (weak, nonatomic) IBOutlet UILabel *status;
37 @property (weak, nonatomic) IBOutlet UILabel *time;
H A DFRAQRScanViewController.h34 @property (nonatomic, strong) FRAMechanismReaderAction* mechanismReaderAction;
39 @property (weak, nonatomic) UIPopoverController *popover;
43 @property (strong) AVCaptureSession *session;
H A DFRANotificationViewController.h33 @property (weak, nonatomic) FRANotification *notification;
37 @property (strong, nonatomic) FRALAContextFactory *authContextFactory;
41 @property (weak, nonatomic) IBOutlet FRANotificationUISlider *authorizeSlider;
45 @property (weak, nonatomic) IBOutlet UIButton *denyButton;
49 @property (weak, nonatomic) IBOutlet UIImageView *image;
53 @property (weak, nonatomic) IBOutlet UILabel *message;
57 @property (weak, nonatomic) IBOutlet UIView *backgroundView;
H A DAppDelegate.h30 @property (strong, nonatomic) UIWindow *window;
H A DFRASplashViewController.h28 @property (nonatomic, strong) FRAIdentityModel *identityModel;
H A DFRAAccountsTableViewController.h36 @property (nonatomic, strong) FRAIdentityModel *identityModel;
41 @property (strong, nonatomic) NSTimer *timer;
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/delegates/
H A DSMSDelegateUtils.js50 _.forEach(object.properties, function (property, key) {
52 callback(property, key);
55 if (isObjectType(property)) {
56 eachProperty(property, callbacks);
74 * @param {Object} property Property to transform
76 function transformBooleanTypeToCheckboxFormat (property) {
77 if (property.hasOwnProperty("type") && property.type === "boolean") {
78 property.format = "checkbox";
84 * @param {Object} property Propert
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DNotificationPropertyNotificationMessageTemplateElement.java41 * generate a value that is the value of a specified notification property.
46 // The account status notification property for which to obtain the value.
47 private AccountStatusNotificationProperty property; field in class:NotificationPropertyNotificationMessageTemplateElement
52 * Creates a new notification property notification message template element.
54 * @param property The notification property for which to obtain the value.
57 AccountStatusNotificationProperty property)
59 this.property = property;
71 notification.getNotificationProperty(property);
56 NotificationPropertyNotificationMessageTemplateElement( AccountStatusNotificationProperty property) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DNotificationPropertyNotificationMessageTemplateElement.java40 * generate a value that is the value of a specified notification property.
45 // The account status notification property for which to obtain the value.
46 private AccountStatusNotificationProperty property; field in class:NotificationPropertyNotificationMessageTemplateElement
51 * Creates a new notification property notification message template element.
53 * @param property The notification property for which to obtain the value.
56 AccountStatusNotificationProperty property)
58 this.property = property;
70 notification.getNotificationProperty(property);
55 NotificationPropertyNotificationMessageTemplateElement( AccountStatusNotificationProperty property) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DNotificationPropertyNotificationMessageTemplateElement.java41 * generate a value that is the value of a specified notification property.
46 // The account status notification property for which to obtain the value.
47 private AccountStatusNotificationProperty property; field in class:NotificationPropertyNotificationMessageTemplateElement
52 * Creates a new notification property notification message template element.
54 * @param property The notification property for which to obtain the value.
57 AccountStatusNotificationProperty property)
59 this.property = property;
71 notification.getNotificationProperty(property);
56 NotificationPropertyNotificationMessageTemplateElement( AccountStatusNotificationProperty property) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DNotificationPropertyNotificationMessageTemplateElement.java40 * generate a value that is the value of a specified notification property.
45 // The account status notification property for which to obtain the value.
46 private AccountStatusNotificationProperty property; field in class:NotificationPropertyNotificationMessageTemplateElement
51 * Creates a new notification property notification message template element.
53 * @param property The notification property for which to obtain the value.
56 AccountStatusNotificationProperty property)
58 this.property = property;
70 notification.getNotificationProperty(property);
55 NotificationPropertyNotificationMessageTemplateElement( AccountStatusNotificationProperty property) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DNotificationPropertyNotificationMessageTemplateElement.java37 * generate a value that is the value of a specified notification property.
42 /** The account status notification property for which to obtain the value. */
43 private AccountStatusNotificationProperty property; field in class:NotificationPropertyNotificationMessageTemplateElement
48 * Creates a new notification property notification message template element.
50 * @param property The notification property for which to obtain the value.
53 AccountStatusNotificationProperty property)
55 this.property = property;
65 notification.getNotificationProperty(property);
52 NotificationPropertyNotificationMessageTemplateElement( AccountStatusNotificationProperty property) argument
[all...]
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/multiplepasswords/script/
H A Dpwpolicy.js25 function isNew(fullObject, value, params, property) {
47 if (fieldHistory[property] === null || fieldHistory[property] === undefined) {
52 if (currentObject[property] !== null && currentObject[property] !== undefined &&
53 openidm.isEncrypted(currentObject[property])) {
54 currentObject[property] = openidm.decrypt(currentObject[property]);
58 if (currentObject[property] === value) {
63 lastFieldValues = fieldHistory[property];
[all...]

Completed in 26 milliseconds

1234567891011>>