/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/ |
H A D | ProgressUpdateListenerDelegate.java | 71 * @param current progress step 75 * current installation progress in formatted form. 78 public void notifyListeners(ProgressStep current, Integer ratio, argument 82 new ProgressUpdateEvent(current, ratio,
|
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/ |
H A D | ProgressUpdateListenerDelegate.java | 72 * @param current progress step 76 * current installation progress in formatted form. 79 public void notifyListeners(ProgressStep current, Integer ratio, argument 83 new ProgressUpdateEvent(current, ratio,
|
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/ |
H A D | SequentialDBCursor.java | 40 private UpdateMsg current; field in class:SequentialDBCursor 63 return current; 72 current = msgs.remove(0); 73 return current != null; 75 current = null; 90 return getClass().getSimpleName() + "(currentRecord=" + current
|
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/ |
H A D | ProgressUpdateListenerDelegate.java | 72 * @param current progress step 76 * current installation progress in formatted form. 79 public void notifyListeners(ProgressStep current, Integer ratio, argument 83 new ProgressUpdateEvent(current, ratio,
|
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/server/changelog/je/ |
H A D | SequentialDBCursor.java | 40 private UpdateMsg current; field in class:SequentialDBCursor 63 return current; 72 current = msgs.remove(0); 73 return current != null; 75 current = null; 90 return getClass().getSimpleName() + "(currentRecord=" + current
|
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/ |
H A D | ProgressUpdateListenerDelegate.java | 71 * @param current progress step 75 * current installation progress in formatted form. 78 public void notifyListeners(ProgressStep current, Integer ratio, argument 82 new ProgressUpdateEvent(current, ratio,
|
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/ |
H A D | ProgressUpdateListenerDelegate.java | 72 * @param current progress step 76 * current installation progress in formatted form. 79 public void notifyListeners(ProgressStep current, Integer ratio, argument 83 new ProgressUpdateEvent(current, ratio,
|
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ldap/ |
H A D | EmbeddedSearchResultIterator.java | 55 private SMSDataEntry current; field in class:EmbeddedSearchResultIterator 88 current = (entry == null) ? null : new SMSDataEntry(dn, 91 return (current != null); 95 SMSDataEntry tmp = current; 96 current = null;
|
H A D | SearchResultIterator.java | 53 private SMSDataEntry current; field in class:SearchResultIterator 71 if (current == null) { 82 current = new SMSDataEntry(dn, SMSUtils.convertEntryToAttributesMap(entry)); 102 SMSDataEntry tmp = current; 103 current = null;
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/utils/ |
H A D | ModifiedProperty.java | 21 * Responsible for tracking the current and previous values of a property 31 private T current; field in class:ModifiedProperty 37 previous = current; 38 current = t; 45 return current; 53 return (current == null ? previous != null : !current.equals(previous)); 60 current, previous);
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/ |
H A D | ProgressUpdateListenerDelegate.java | 71 * @param current progress step 75 * current installation progress in formatted form. 78 public void notifyListeners(ProgressStep current, Integer ratio, argument 82 new ProgressUpdateEvent(current, ratio,
|
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/server/changelog/file/ |
H A D | SequentialDBCursor.java | 39 private UpdateMsg current; field in class:SequentialDBCursor 62 return current; 71 current = msgs.remove(0); 72 return current != null; 74 current = null; 89 return getClass().getSimpleName() + "(currentRecord=" + current
|
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/ldap/ |
H A D | EmbeddedSearchResultIterator.java | 56 private SMSDataEntry current; field in class:EmbeddedSearchResultIterator 89 current = (entry == null) ? null : new SMSDataEntry(dn, 92 return (current != null); 96 SMSDataEntry tmp = current; 97 current = null;
|
H A D | SearchResultIterator.java | 53 private SMSDataEntry current; field in class:SearchResultIterator 71 if (current == null) { 82 current = new SMSDataEntry(dn, SMSUtils.convertEntryToAttributesMap(entry)); 102 SMSDataEntry tmp = current; 103 current = null;
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/utils/ |
H A D | ModifiedProperty.java | 21 * Responsible for tracking the current and previous values of a property 31 private T current; field in class:ModifiedProperty 37 previous = current; 38 current = t; 45 return current; 53 return (current == null ? previous != null : !current.equals(previous)); 60 current, previous);
|
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/ldap/ |
H A D | ModSet.java | 64 private int current = 0; field in class:ModSet 71 current = 0;
|
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
H A D | ChainedBindings.java | 31 * the current scope first, and then in the parent scope. Setting a variable always does so in the current scope. 33 * Therefore any changes made to a variable will be reflected in the current scope. 41 private final Bindings current; field in class:ChainedBindings 45 * Constructs a chained bindings set with the given parent scope and current scope objects. 47 * @param current the current scope. 49 public ChainedBindings(final Bindings parent, final Bindings current) { argument 50 Reject.ifNull(parent, current); 52 this.current [all...] |
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
H A D | ChainedBindings.java | 31 * the current scope first, and then in the parent scope. Setting a variable always does so in the current scope. 33 * Therefore any changes made to a variable will be reflected in the current scope. 41 private final Bindings current; field in class:ChainedBindings 45 * Constructs a chained bindings set with the given parent scope and current scope objects. 47 * @param current the current scope. 49 public ChainedBindings(final Bindings parent, final Bindings current) { argument 50 Reject.ifNull(parent, current); 52 this.current [all...] |
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/ldap/ |
H A D | ModSet.java | 64 private int current = 0; field in class:ModSet 71 current = 0;
|
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/ |
H A D | PolicyPrivilegeManager.java | 404 protected void notifyPrivilegeChanged(String realm, Privilege previous, Privilege current) throws EntitlementException { argument 413 Set<String> r = current.getEntitlement().getResourceNames(); 418 String applicationName = current.getEntitlement().getApplicationName(); 425 applicationName, current.getName(), resourceNames);
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/common/ |
H A D | DiscoUtils.java | 126 ResourceOffering current = null; 128 current = new ResourceOffering( 139 offerings.add(current); 142 handleDirectives(current, directives, userDN, message, 161 private static void handleDirectives(ResourceOffering current, argument 185 current = doEncryption(current); 222 String ref = generateCredential(dirs, current, message, userDN, 233 current.getServiceInstance().getDescription().iterator(); 257 allCred = generateCredential(all, current, messag 279 doEncryption(ResourceOffering current) argument 344 generateCredential(BitSet dirs, ResourceOffering current, Message message, String userDN, List credentials, SessionContext invoSession, String wscID, Object token) argument [all...] |
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/opensso/ |
H A D | PolicyPrivilegeManager.java | 280 protected void notifyPrivilegeChanged(String realm, Privilege previous, Privilege current, argument 290 Set<String> r = current.getEntitlement().getResourceNames(); 295 String applicationName = current.getEntitlement().getApplicationName(); 305 field("policy", current.getName()), 313 applicationName, current.getName(), resourceNames);
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/common/ |
H A D | DiscoUtils.java | 126 ResourceOffering current = null; 128 current = new ResourceOffering( 139 offerings.add(current); 142 handleDirectives(current, directives, userDN, message, 161 private static void handleDirectives(ResourceOffering current, argument 185 current = doEncryption(current); 222 String ref = generateCredential(dirs, current, message, userDN, 233 current.getServiceInstance().getDescription().iterator(); 257 allCred = generateCredential(all, current, messag 279 doEncryption(ResourceOffering current) argument 344 generateCredential(BitSet dirs, ResourceOffering current, Message message, String userDN, List credentials, SessionContext invoSession, String wscID, Object token) argument [all...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/util/ |
H A D | VersionCompatibilityIssue.java | 541 * @param current build version 548 Collection<Integer> excludeIds, BuildInformation current, 556 boolean isUpgrade = neu.compareTo(current) >= 0; 558 current.getMajorVersion(), current.getMinorVersion(), 559 current.getPointVersion(), current.getRevisionNumber()); 592 * may have happend in a branch that we don't care about for the current 547 getEvents( Collection<Integer> excludeIds, BuildInformation current, BuildInformation neu) argument
|
/forgerock/opendj2/src/server/org/opends/server/util/ |
H A D | VersionCompatibilityIssue.java | 540 * @param current build version 547 Collection<Integer> excludeIds, BuildInformation current, 555 boolean isUpgrade = neu.compareTo(current) >= 0; 557 current.getMajorVersion(), current.getMinorVersion(), 558 current.getPointVersion(), current.getRevisionNumber()); 591 * may have happend in a branch that we don't care about for the current 546 getEvents( Collection<Integer> excludeIds, BuildInformation current, BuildInformation neu) argument
|