Searched refs:isActive (Results 1 - 25 of 203) sorted by relevance

123456789

/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/core/realms/
H A DRealmLookup.java26 * boolean active = realms.isActive(realm);
49 boolean isActive(Realm realm) throws RealmLookupException; method in interface:RealmLookup
H A DDefaultRealmLookup.java175 public final boolean isActive(Realm org) throws RealmLookupException { method in class:DefaultRealmLookup
176 boolean isActive = true;
189 isActive = true;
192 isActive = stringActive.equalsIgnoreCase("Active");
202 isActive = orgObj.isActivated();
209 return isActive;
H A DCachingRealmLookup.java100 public boolean isActive(Realm realm) throws RealmLookupException { method in class:CachingRealmLookup
105 boolean active = delegate.isActive(realm);
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/common/
H A DICookieResetHelper.java38 public abstract boolean isActive(); method in interface:ICookieResetHelper
H A DINotenforcedIPHelper.java43 public abstract boolean isActive(); method in interface:INotenforcedIPHelper
H A DINotenforcedURIHelper.java41 public abstract boolean isActive(); method in interface:INotenforcedURIHelper
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DIAmFilterHandler.java78 public boolean isActive(); method in interface:IAmFilterHandler
H A DNotenforcedIPTaskHandler.java133 public boolean isActive() { method in class:NotenforcedIPTaskHandler
134 return isModeSSOOnlyActive() && (getNotenforcedIPHelper().isActive());
H A DNotenforcedListTaskHandler.java164 public boolean isActive() { method in class:NotenforcedListTaskHandler
166 && getNotEnforcedListURIHelper().isActive();
H A DErrorPageTaskHandler.java113 public boolean isActive() { method in class:ErrorPageTaskHandler
/forgerock/openam-v13/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/helpers/
H A DDirectoryHelper.java89 return isActive(value, inactiveValue) ? STATUS_ACTIVE : STATUS_INACTIVE;
100 public boolean isActive(String value, String inactiveValue) { method in class:DirectoryHelper
109 * @param isActive The user status that needs to be represented.
116 public String getStatus(DJLDAPv3Repo idRepo, String name, boolean isActive, String userStatusAttr, argument
118 return isActive ? activeValue : inactiveValue;
H A DADHelper.java47 public boolean isActive(String value, String inactiveValue) { method in class:ADHelper
61 * @param isActive Whether the status needs to be set to active or inactive.
69 public String getStatus(DJLDAPv3Repo idRepo, String name, boolean isActive, String userStatusAttr, String activeValue, argument
75 if (isActive) {
/forgerock/openam/openam-datastore/src/main/java/org/forgerock/openam/idrepo/ldap/helpers/
H A DDirectoryHelper.java89 return isActive(value, activeValue) ? STATUS_ACTIVE : STATUS_INACTIVE;
100 public boolean isActive(String value, String activeValue) { method in class:DirectoryHelper
109 * @param isActive The user status that needs to be represented.
116 public String getStatus(DJLDAPv3Repo idRepo, String name, boolean isActive, String userStatusAttr, argument
118 return isActive ? activeValue : inactiveValue;
H A DADHelper.java47 public boolean isActive(String value, String inactiveValue) { method in class:ADHelper
61 * @param isActive Whether the status needs to be set to active or inactive.
69 public String getStatus(DJLDAPv3Repo idRepo, String name, boolean isActive, String userStatusAttr, String activeValue, argument
75 if (isActive) {
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DMatchPattern.java82 public boolean isActive() { method in class:MatchPattern
83 return isActive;
87 isActive = flag;
111 sb.append(", isActive=").append(isActive());
149 private boolean isActive; field in class:MatchPattern
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DMatchPattern.java82 public boolean isActive() { method in class:MatchPattern
83 return isActive;
87 isActive = flag;
111 sb.append(", isActive=").append(isActive());
149 private boolean isActive; field in class:MatchPattern
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/core/realms/
H A DCachingRealmLookupTest.java87 realmsCache.isActive(Realm.root());
338 when(realmLookupDelegate.isActive(realm)).thenReturn(true);
340 realmsCache.isActive(realm);
343 boolean active = realmsCache.isActive(realm);
347 verify(realmLookupDelegate).isActive(realm);
359 when(realmLookupDelegate.isActive(realm)).thenReturn(true).thenReturn(false);
361 realmsCache.isActive(realm);
365 boolean active = realmsCache.isActive(realm);
369 verify(realmLookupDelegate, times(2)).isActive(realm);
381 when(realmLookupDelegate.isActive(real
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/accountmgmt/
H A DFSAccountFedInfo.java62 private boolean isActive = true; field in class:FSAccountFedInfo
179 this.isActive = true;
259 this.isActive = true;
266 this.isActive = false;
274 return this.isActive;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/accountmgmt/
H A DFSAccountFedInfo.java62 private boolean isActive = true; field in class:FSAccountFedInfo
179 this.isActive = true;
259 this.isActive = true;
266 this.isActive = false;
274 return this.isActive;
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/notifications/
H A DNotificationLayout.java44 private boolean isActive; field in class:NotificationLayout
96 setClickable(notification.isActive());
105 public boolean isActive() { method in class:NotificationLayout
106 return isActive;
132 this.isActive = notification.isActive();
H A DNotificationAdapter.java157 if (notification.isActive()) {
171 boolean wasActive = layout.isActive();
173 if (wasActive != layout.isActive()) {
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/action/
H A DIsActiveActionHandler.java35 * Handler for 'isActive' action
71 boolean isActive = false;
75 isActive = true;
81 return json(object(field(ACTIVE, isActive)));
/forgerock/openam-v13/openam-examples/openam-example-clientsdk-cli/src/main/java/com/sun/identity/samples/clientsdk/idrepo/
H A DIdRepoSampleSearchIds.java176 "' is active: " + amid.isActive());
205 if (amid.isActive()) {
211 "' is active: " + amid.isActive());
214 if (!amid.isActive()) {
220 "' is active: " + amid.isActive());
282 "' is active: " + amid.isActive());
286 if (amid.isActive()) {
292 "' is active: " + amid.isActive());
295 if (!amid.isActive()) {
301 "' is active: " + amid.isActive());
[all...]
/forgerock/openam/openam-examples/openam-example-clientsdk-cli/src/main/java/com/sun/identity/samples/clientsdk/idrepo/
H A DIdRepoSampleSearchIds.java176 "' is active: " + amid.isActive());
205 if (amid.isActive()) {
211 "' is active: " + amid.isActive());
214 if (!amid.isActive()) {
220 "' is active: " + amid.isActive());
282 "' is active: " + amid.isActive());
286 if (amid.isActive()) {
292 "' is active: " + amid.isActive());
295 if (!amid.isActive()) {
301 "' is active: " + amid.isActive());
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/ui/
H A DMechanismIcon.java85 if (notification.isActive()) {

Completed in 44 milliseconds

123456789