Searched defs:approved (Results 1 - 15 of 15) sorted by relevance

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRANotification.h50 * Notification can either be marked as approved or denied. Once it has been
51 * either approved or denied, it will move to the non-pending state.
56 * Indicator of whether the Notification has been approved. Once in the approved
59 @property (getter=isApproved, nonatomic, readonly) BOOL approved; variable
97 - (instancetype)initWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel messageId:(NSString *)messageId challenge:(NSString *)challenge timeReceived:(NSDate *)timeReceived timeToLive:(NSTimeInterval)timeToLive loadBalancerCookieData:(NSString *)loadBalancerCookie pending:(BOOL)pendingState approved:(BOOL)approvedState;
107 + (instancetype)notificationWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel messageId:(NSString *)messageId challenge:(NSString *)challenge timeReceived:(NSDate *)timeReceived timeToLive:(NSTimeInterval)timeToLive loadBalancerCookieData:(NSString *)loadBalancerCookie pending:(BOOL)pendingState approved:(BOOL)approvedState;
H A Dschema.sql25 approved INT,
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/upgrade/
H A DLicenseFile.java104 static private boolean approved = false; field in class:LicenseFile
186 return approved;
197 approved = p_approved;
201 * Create a file which indicates that the license has been approved.
219 * Indicate if the license had already been approved..
221 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2/src/server/org/opends/server/tools/upgrade/
H A DLicenseFile.java103 static private boolean approved = false; field in class:LicenseFile
185 return approved;
196 approved = p_approved;
200 * Create a file which indicates that the license has been approved.
218 * Indicate if the license had already been approved..
220 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/upgrade/
H A DLicenseFile.java104 static private boolean approved = false; field in class:LicenseFile
186 return approved;
197 approved = p_approved;
201 * Create a file which indicates that the license has been approved.
219 * Indicate if the license had already been approved..
221 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2-jel-hg/src/server/org/opends/server/tools/upgrade/
H A DLicenseFile.java81 static private boolean approved = false; field in class:LicenseFile
163 return approved;
174 approved = p_approved;
178 * Create a file which indicates that the license has been approved.
196 * Indicate if the license had already been approved..
198 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2-hg/src/server/org/opends/server/tools/upgrade/
H A DLicenseFile.java103 static private boolean approved = false; field in class:LicenseFile
185 return approved;
196 approved = p_approved;
200 * Create a file which indicates that the license has been approved.
218 * Indicate if the license had already been approved..
220 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/
H A DLicenseFile.java103 static private boolean approved = false; field in class:LicenseFile
232 return approved;
243 approved = p_approved;
248 * indicates that the license has been approved.
270 * Indicate if the license had already been approved..
272 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/
H A DLicenseFile.java127 static private boolean approved = false; field in class:LicenseFile
255 return approved;
266 approved = p_approved;
270 * Create a file which indicates that the license has been approved.
289 * Indicate if the license had already been approved..
291 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/
H A DLicenseFile.java104 static private boolean approved = false; field in class:LicenseFile
233 return approved;
244 approved = p_approved;
249 * indicates that the license has been approved.
271 * Indicate if the license had already been approved..
273 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/
H A DLicenseFile.java103 static private boolean approved = false; field in class:LicenseFile
232 return approved;
243 approved = p_approved;
248 * indicates that the license has been approved.
270 * Indicate if the license had already been approved..
272 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/
H A DLicenseFile.java102 static private boolean approved = false; field in class:LicenseFile
227 return approved;
239 approved = p_approved;
243 * Create a file which indicates that the license has been approved.
262 * Indicate if the license had already been approved..
264 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/
H A DLicenseFile.java83 * Get the directory in which approved legal files are stored.
105 private static boolean approved; field in class:LicenseFile
189 return approved;
200 approved = p_approved;
205 * indicates that the license has been approved.
234 * Indicate if the license had already been approved..
236 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/tools/upgrade/
H A DLicenseFile.java108 private static boolean approved; field in class:LicenseFile
189 return approved;
200 approved = p_approved;
204 * Create a file which indicates that the license has been approved.
221 * Indicate if the license had already been approved..
223 * @return <CODE>true</CODE> if the license had already been approved by the
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DNotification.java39 private boolean approved; field in class:Notification
43 protected Notification(Mechanism mechanism, long id, Calendar timeAdded, Calendar timeExpired, boolean approved, boolean pending) { argument
48 this.approved = approved;
82 return approved;
87 * The map passed out should be approved by the builder to recreate this object.
220 approved = true;
240 approved = false;
272 protected boolean approved = false; field in class:Notification.NotificationBuilder
300 * Sets whether the authentication the notification is related to was approved
303 setApproved(boolean approved) argument
[all...]

Completed in 57 milliseconds