Searched refs:isStored (Results 1 - 20 of 20) sorted by relevance

/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAModelObjectProtected.h37 @property (nonatomic, getter=isStored) BOOL stored;
H A DFRAModelObject.h35 @property (nonatomic, readonly, getter=isStored) BOOL stored;
H A DFRAIdentityDatabase.m68 if ([identity isStored]) {
98 if (![identity isStored]) {
131 if ([mechanism isStored]) {
160 if (![mechanism isStored]) {
189 if (![mechanism isStored]) {
215 if ([notification isStored]) {
240 if (![notification isStored]) {
265 if (![notification isStored]) {
H A DFRAMechanism.m59 if ([self isStored]) {
68 if ([self isStored]) {
H A DFRAIdentity.m88 if ([self isStored]) {
107 if ([self isStored]) {
H A DFRANotification.m80 if ([self isStored]) {
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/model/
H A DModelObject.java57 public abstract boolean isStored(); method in class:ModelObject
/forgerock/authenticator-ios-v2/unit-tests/
H A DFRAIdentityModelTests.m75 XCTAssertTrue([aliceIdentity isStored]);
117 XCTAssertFalse([aliceIdentity isStored]);
144 XCTAssertFalse([mechanism isStored]);
151 XCTAssertTrue([mechanism isStored]);
152 XCTAssertTrue([aliceIdentity isStored]);
183 XCTAssertTrue([notification isStored]);
184 XCTAssertTrue([mechanism isStored]);
185 XCTAssertTrue([aliceIdentity isStored]);
221 XCTAssertFalse([notification isStored]);
222 XCTAssertFalse([mechanism isStored]);
[all...]
H A DFRAMechanismTest.m78 XCTAssertTrue([notification isStored]);
129 XCTAssertFalse([notification isStored]);
H A DFRAIdentityTests.m98 XCTAssertTrue([pushMechanism isStored]);
155 XCTAssertFalse([pushMechanism isStored]);
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/identity/
H A DIdentity.java68 if (!mechanism.isStored()) {
168 return isStored() && valid;
172 public boolean isStored() { method in class:Identity
178 if (!isStored()) {
247 if (mechanism.isStored()) {
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/mechanisms/base/
H A DMechanism.java148 public boolean isStored() { method in class:Mechanism
154 if (!isStored()) {
172 if (isStored()) {
183 return isStored() && valid;
211 if (notification.isStored()) {
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DNotification.java93 public boolean isStored() { method in class:Notification
99 if (!isStored()) {
109 return isStored();
114 if (isStored()) {
122 return isStored();
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/session/service/
H A DSessionAccessManagerTest.java63 given(session.isStored()).willReturn(true);
83 given(mockInternalSession.isStored()).willReturn(true);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DAuthenticationSessionStore.java51 if (session.isStored()) {
H A DInternalSession.java699 public boolean isStored() { method in class:InternalSession
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/
H A DSessionPersistenceManagerStep.java72 if (internalSession.isStored()) {
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/service/
H A DAuthenticationSessionStoreTest.java59 given(mockSession.isStored()).willReturn(true);
/forgerock/openam/openam-core/src/test/java/com/iplanet/dpro/session/operations/strategies/
H A DLocalOperationsTest.java188 given(mockInternalSession.isStored()).willReturn(true);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/operations/strategies/
H A DLocalOperations.java159 Reject.rejectStateIfTrue(session.isStored(),

Completed in 2360 milliseconds