Searched defs:code (Results 1 - 25 of 189) sorted by relevance

12345678

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAOathMechanismTableViewCell.h26 * The delegate that acts as controller for this cell's UI elements relating to the OATH code value.
31 * The UILabel in which the OTP code will be displayed.
33 @property (weak, nonatomic) IBOutlet UILabel *code; variable
35 * The FRACircleProgressView in which the TOTP code's time remaining will be displayed.
39 * The button for generating the next HOTP code.
H A DFRAHotpOathMechanism.h27 * The length of the OATH code generated by the mechanism. Always 6 or 8; defaults to 6.
31 * The current login code for the OATH mechanism.
33 @property (nonatomic, readonly) NSString *code; variable
39 * The algorithm used for generating the next hash code.
43 * The HMAC counter which is used to generate the next hash code.
57 * @param codeLenght The length of the code.
71 * @param codeLength The length of the code.
82 * Generates the next code for this OATH mechanism.
85 * @return YES if a new code has been successfully generated, otherwise NO.
H A DFRATotpOathMechanism.h27 * The length of the OATH code generated by the mechanism. Always 6 or 8; defaults to 6.
31 * The current login code for the OATH mechanism.
33 @property (nonatomic, readonly) NSString *code; variable
39 * The algorithm used for generating the next hash code.
43 * The time period to be used when generating the next hash code.
57 * @param codeLength The length of the code.
71 * @param codeLength The length of the code.
79 * Generates the next code for this OATH mechanism.
82 * @return YES if a new code has been successfully generated, otherwise NO.
87 * Track the time progress of the TOTP code
[all...]
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/
H A DTokenMarshalException.java25 public TokenMarshalException(int code, String message) { argument
26 super(code, message);
28 public TokenMarshalException(int code, String message, Throwable cause) { argument
29 super(code, message, cause);
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DAMSTSRuntimeException.java27 public AMSTSRuntimeException(int code, String message) { argument
29 errorCode = code;
32 public AMSTSRuntimeException(int code, String message, Throwable cause) { argument
34 errorCode = code;
H A DCTSTokenPersistenceException.java25 public CTSTokenPersistenceException(int code, String message) { argument
26 super(code, message);
28 public CTSTokenPersistenceException(int code, String message, Throwable cause) { argument
29 super(code, message, cause);
H A DSTSInitializationException.java26 public STSInitializationException(int code, String message) { argument
27 super(code, message);
29 public STSInitializationException(int code, String message, Throwable cause) { argument
30 super(code, message, cause);
H A DSTSPublishException.java28 public STSPublishException(int code, String message) { argument
29 super(code, message);
35 public STSPublishException(int code, String message, Throwable cause) { argument
36 super(code, message, cause);
H A DTokenCancellationException.java28 public TokenCancellationException(int code, String message) { argument
29 super(code, message);
35 public TokenCancellationException(int code, String message, Throwable cause) { argument
36 super(code, message, cause);
H A DTokenCreationException.java28 public TokenCreationException(int code, String message) { argument
29 super(code, message);
35 public TokenCreationException(int code, String message, Throwable cause) { argument
36 super(code, message, cause);
H A DTokenIdGenerationException.java29 public TokenIdGenerationException(int code, String message) { argument
30 super(code, message);
36 public TokenIdGenerationException(int code, String message, Throwable cause) { argument
37 super(code, message, cause);
H A DTokenValidationException.java28 public TokenValidationException(int code, String message) { argument
29 super(code, message);
35 public TokenValidationException(int code, String message, Throwable cause) { argument
36 super(code, message, cause);
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/
H A DTokenMarshalException.java25 public TokenMarshalException(int code, String message) { argument
26 super(code, message);
28 public TokenMarshalException(int code, String message, Throwable cause) { argument
29 super(code, message, cause);
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/xacml/v3/
H A DDiffStatus.java28 private final char code; field in class:DiffStatus
30 DiffStatus(char code) { argument
31 this.code = code;
37 * @return Character code description of diff status.
40 return code;
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DAMSTSRuntimeException.java27 public AMSTSRuntimeException(int code, String message) { argument
29 errorCode = code;
32 public AMSTSRuntimeException(int code, String message, Throwable cause) { argument
34 errorCode = code;
H A DCTSTokenPersistenceException.java25 public CTSTokenPersistenceException(int code, String message) { argument
26 super(code, message);
28 public CTSTokenPersistenceException(int code, String message, Throwable cause) { argument
29 super(code, message, cause);
H A DSTSInitializationException.java26 public STSInitializationException(int code, String message) { argument
27 super(code, message);
29 public STSInitializationException(int code, String message, Throwable cause) { argument
30 super(code, message, cause);
H A DSTSPublishException.java28 public STSPublishException(int code, String message) { argument
29 super(code, message);
35 public STSPublishException(int code, String message, Throwable cause) { argument
36 super(code, message, cause);
H A DTokenCancellationException.java28 public TokenCancellationException(int code, String message) { argument
29 super(code, message);
35 public TokenCancellationException(int code, String message, Throwable cause) { argument
36 super(code, message, cause);
H A DTokenCreationException.java30 public TokenCreationException(int code, String message) { argument
31 super(code, message);
37 public TokenCreationException(int code, String message, Throwable cause) { argument
38 super(code, message, cause);
H A DTokenIdGenerationException.java29 public TokenIdGenerationException(int code, String message) { argument
30 super(code, message);
36 public TokenIdGenerationException(int code, String message, Throwable cause) { argument
37 super(code, message, cause);
H A DTokenValidationException.java31 public TokenValidationException(int code, String message) { argument
32 super(code, message);
38 public TokenValidationException(int code, String message, Throwable cause) { argument
39 super(code, message, cause);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/errors/
H A DIdentityServicesException.java39 * @param code to look up.
43 public static IdServicesException getIdentityServiceException(int code, String message) { argument
44 switch (code) {
65 * @param code to check
68 public static boolean isMapped(int code) { argument
69 return code == LDAP_NOT_ALLOWED_ON_RDN || code == LDAP_NO_SUCH_OBJECT;
/forgerock/openam-v13/openam-scripting/src/test/java/org/forgerock/openam/scripting/rest/
H A DScriptExceptionMappingHandlerTest.java74 private boolean isClientError(int code) { argument
75 return code >= 400 && code < 500;
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/oath/
H A DTokenCode.java27 private final String code; field in class:TokenCode
33 public TokenCode(TimeKeeper timeKeeper, String code, long start, long until) { argument
35 this.code = code;
41 * Gets the code which is currently active.
45 return code;
60 * the amount of time that has passed between the start and end times of the code.

Completed in 86 milliseconds

12345678