/forgerock/opendj-b2.6/src/server/org/opends/server/util/ |
H A D | AddChangeRecordEntry.java | 45 * an add operation. It includes a DN and a set of attributes, as well as 57 * The entry attributes for this operation. 59 private final List<Attribute> attributes; field in class:AddChangeRecordEntry 69 * @param attributes 70 * The entry attributes for this operation. It must not be 74 Map<AttributeType,List<Attribute>> attributes) 79 ensureNotNull(attributes); 82 this.attributes = new ArrayList<Attribute>(attributes.size()); 83 for (List<Attribute> list : attributes 73 AddChangeRecordEntry(DN dn, Map<AttributeType,List<Attribute>> attributes) argument [all...] |
/forgerock/opendj2/src/server/org/opends/server/util/ |
H A D | AddChangeRecordEntry.java | 44 * an add operation. It includes a DN and a set of attributes, as well as 56 * The entry attributes for this operation. 58 private final List<Attribute> attributes; field in class:AddChangeRecordEntry 68 * @param attributes 69 * The entry attributes for this operation. It must not be 73 Map<AttributeType,List<Attribute>> attributes) 78 ensureNotNull(attributes); 81 this.attributes = new ArrayList<Attribute>(attributes.size()); 82 for (List<Attribute> list : attributes 72 AddChangeRecordEntry(DN dn, Map<AttributeType,List<Attribute>> attributes) argument [all...] |
/forgerock/opendj2.6.2/src/server/org/opends/server/util/ |
H A D | AddChangeRecordEntry.java | 45 * an add operation. It includes a DN and a set of attributes, as well as 57 * The entry attributes for this operation. 59 private final List<Attribute> attributes; field in class:AddChangeRecordEntry 69 * @param attributes 70 * The entry attributes for this operation. It must not be 74 Map<AttributeType,List<Attribute>> attributes) 79 ensureNotNull(attributes); 82 this.attributes = new ArrayList<Attribute>(attributes.size()); 83 for (List<Attribute> list : attributes 73 AddChangeRecordEntry(DN dn, Map<AttributeType,List<Attribute>> attributes) argument [all...] |
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/ |
H A D | AddChangeRecordEntry.java | 45 * an add operation. It includes a DN and a set of attributes, as well as 57 * The entry attributes for this operation. 59 private final List<Attribute> attributes; field in class:AddChangeRecordEntry 69 * @param attributes 70 * The entry attributes for this operation. It must not be 74 Map<AttributeType,List<Attribute>> attributes) 79 ensureNotNull(attributes); 82 this.attributes = new ArrayList<Attribute>(attributes.size()); 83 for (List<Attribute> list : attributes 73 AddChangeRecordEntry(DN dn, Map<AttributeType,List<Attribute>> attributes) argument [all...] |
/forgerock/opendj2-hg/src/server/org/opends/server/util/ |
H A D | AddChangeRecordEntry.java | 44 * an add operation. It includes a DN and a set of attributes, as well as 56 * The entry attributes for this operation. 58 private final List<Attribute> attributes; field in class:AddChangeRecordEntry 68 * @param attributes 69 * The entry attributes for this operation. It must not be 73 Map<AttributeType,List<Attribute>> attributes) 78 ensureNotNull(attributes); 81 this.attributes = new ArrayList<Attribute>(attributes.size()); 82 for (List<Attribute> list : attributes 72 AddChangeRecordEntry(DN dn, Map<AttributeType,List<Attribute>> attributes) argument [all...] |
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/ |
H A D | UserIDGenerator.java | 51 * <code>orgName</code> and attributes, could be used to generate the user 57 * @param attributes the keys in the <code>Map</code> contains the 65 public Set generateUserIDs(String orgName, Map attributes, int num); argument
|
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/config/ |
H A D | ConsoleConfigBuilder.java | 39 * @param attributes 40 * all retrieved attributes 44 C build(Map<String, Set<String>> attributes); argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/ |
H A D | AttributeQuery.java | 67 * @param attributes the new <code>Attribute</code> objects. 71 public void setAttributes(List attributes) throws SAML2Exception; argument
|
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/ |
H A D | AddChangeRecordEntry.java | 45 * an add operation. It includes a DN and a set of attributes, as well as 57 * The entry attributes for this operation. 59 private final List<Attribute> attributes; field in class:AddChangeRecordEntry 69 * @param attributes 70 * The entry attributes for this operation. It must not be 74 Map<AttributeType,List<Attribute>> attributes) 79 ifNull(attributes); 82 this.attributes = new ArrayList<>(attributes.size()); 83 for (List<Attribute> list : attributes 73 AddChangeRecordEntry(DN dn, Map<AttributeType,List<Attribute>> attributes) argument [all...] |
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/ |
H A D | UserIDGenerator.java | 51 * <code>orgName</code> and attributes, could be used to generate the user 57 * @param attributes the keys in the <code>Map</code> contains the 65 public Set generateUserIDs(String orgName, Map attributes, int num); argument
|
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/ |
H A D | ConsoleConfigBuilder.java | 39 * @param attributes 40 * all retrieved attributes 44 C build(Map<String, Set<String>> attributes); argument
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/ |
H A D | AttributeQuery.java | 73 * @param attributes the new <code>Attribute</code> objects. 77 public void setAttributes(List attributes) throws SAML2Exception; argument
|
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/service/ |
H A D | ReplicationMonitor.java | 85 * Retrieves a set of attributes containing monitor data that should be 88 * @return A set of attributes containing monitor data that should be 95 ArrayList<Attribute> attributes = new ArrayList<Attribute>(); 99 attributes.add(attr); 104 attributes.add(attr); 107 addMonitorData(attributes, "lost-connections", 111 addMonitorData(attributes, "received-updates", domain.getNumRcvdUpdates()); 114 addMonitorData(attributes, "sent-updates", domain.getNumSentUpdates()); 117 addMonitorData(attributes, "replayed-updates", 121 addMonitorData(attributes, "serve 268 addMonitorData( ArrayList<Attribute> attributes, String name, int value) argument 286 addMonitorData( ArrayList<Attribute> attributes, String name, long value) argument 304 addMonitorData( ArrayList<Attribute> attributes, String name, String value) argument [all...] |
/forgerock/opendj-b2.6/src/server/org/opends/server/types/ |
H A D | AttributeValueIterable.java | 42 * achieved without having to duplicate the set of attributes. 52 // The set of attributes having the same type and options. 53 private Iterable<Attribute> attributes; field in class:AttributeValueIterable 63 * @param attributes The set of attributes having the same type. 66 public AttributeValueIterable(Iterable<Attribute> attributes) { argument 67 this(attributes, null); 74 * @param attributes The set of attributes having the same type. 80 public AttributeValueIterable(Iterable<Attribute> attributes, argument [all...] |
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | WorkQueueMonitoringPanel.java | 51 static List<MonitoringAttributes> attributes = field in class:WorkQueueMonitoringPanel 54 attributes.add(BasicMonitoringAttributes.AVERAGE_REQUEST_BACKLOG); 55 attributes.add(BasicMonitoringAttributes.MAX_REQUEST_BACKLOG); 56 attributes.add(BasicMonitoringAttributes.CURRENT_REQUEST_BACKLOG); 57 attributes.add(BasicMonitoringAttributes.REQUESTS_SUBMITTED); 58 attributes.add(BasicMonitoringAttributes.REQUESTS_REJECTED); 63 for (int i=0; i<attributes.size(); i++) 108 for (int i=0; i<attributes.size(); i++) 110 JLabel l = Utilities.createPrimaryLabel(getLabel(attributes.get(i))); 152 updateMonitoringInfo(attributes, monitoringLabel [all...] |
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/ |
H A D | CreateEntryMockLDAPConnection.java | 57 // The expected set of attributes (attribute name -> list of 59 private final Map<String, List<String>> attributes = new HashMap<String, List<String>>(); field in class:CreateEntryMockLDAPConnection 95 attributes.put(expectedName, Arrays.asList(expectedValues)); 113 public void createEntry(LdapName dn, Attributes attributes) argument 119 this.attributes); 120 NamingEnumeration<? extends Attribute> ne = attributes.getAll(); 132 Assert.fail("Missing expected attributes: " + expected.keySet());
|
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/util/ |
H A D | TestAddChangeRecordEntry.java | 53 // Set of attributes. 54 private Map<AttributeType, List<Attribute>> attributes; field in class:TestAddChangeRecordEntry 71 attributes = new HashMap<AttributeType, List<Attribute>>(); 75 attributes.put(attribute.getAttributeType(), alist); 87 new AddChangeRecordEntry(null, attributes); 99 attributes); 116 attributes); 129 AddChangeRecordEntry entry = new AddChangeRecordEntry(DN.nullDN(), attributes); 158 AddChangeRecordEntry entry = new AddChangeRecordEntry(DN.nullDN(), attributes);
|
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/ |
H A D | WorkQueueMonitoringPanel.java | 50 static List<MonitoringAttributes> attributes = field in class:WorkQueueMonitoringPanel 53 attributes.add(BasicMonitoringAttributes.AVERAGE_REQUEST_BACKLOG); 54 attributes.add(BasicMonitoringAttributes.MAX_REQUEST_BACKLOG); 55 attributes.add(BasicMonitoringAttributes.CURRENT_REQUEST_BACKLOG); 56 attributes.add(BasicMonitoringAttributes.REQUESTS_SUBMITTED); 57 attributes.add(BasicMonitoringAttributes.REQUESTS_REJECTED); 62 for (int i=0; i<attributes.size(); i++) 107 for (int i=0; i<attributes.size(); i++) 109 JLabel l = Utilities.createPrimaryLabel(getLabel(attributes.get(i))); 151 updateMonitoringInfo(attributes, monitoringLabel [all...] |
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/util/ |
H A D | TestAddChangeRecordEntry.java | 52 // Set of attributes. 53 private Map<AttributeType, List<Attribute>> attributes; field in class:TestAddChangeRecordEntry 70 attributes = new HashMap<AttributeType, List<Attribute>>(); 74 attributes.put(attribute.getAttributeType(), alist); 86 new AddChangeRecordEntry(null, attributes); 98 attributes); 115 attributes); 128 AddChangeRecordEntry entry = new AddChangeRecordEntry(DN.nullDN(), attributes); 157 AddChangeRecordEntry entry = new AddChangeRecordEntry(DN.nullDN(), attributes);
|
/forgerock/opendj2/src/server/org/opends/server/types/ |
H A D | AttributeValueIterable.java | 41 * achieved without having to duplicate the set of attributes. 51 // The set of attributes having the same type and options. 52 private Iterable<Attribute> attributes; field in class:AttributeValueIterable 62 * @param attributes The set of attributes having the same type. 65 public AttributeValueIterable(Iterable<Attribute> attributes) { argument 66 this(attributes, null); 73 * @param attributes The set of attributes having the same type. 79 public AttributeValueIterable(Iterable<Attribute> attributes, argument [all...] |
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/ |
H A D | CreateEntryMockLDAPConnection.java | 56 // The expected set of attributes (attribute name -> list of 58 private final Map<String, List<String>> attributes = new HashMap<String, List<String>>(); field in class:CreateEntryMockLDAPConnection 94 attributes.put(expectedName, Arrays.asList(expectedValues)); 112 public void createEntry(LdapName dn, Attributes attributes) argument 118 this.attributes); 119 NamingEnumeration<? extends Attribute> ne = attributes.getAll(); 131 Assert.fail("Missing expected attributes: " + expected.keySet());
|
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/service/ |
H A D | ReplicationMonitor.java | 85 * Retrieves a set of attributes containing monitor data that should be 88 * @return A set of attributes containing monitor data that should be 95 ArrayList<Attribute> attributes = new ArrayList<Attribute>(); 99 attributes.add(attr); 104 attributes.add(attr); 107 addMonitorData(attributes, "lost-connections", 111 addMonitorData(attributes, "received-updates", domain.getNumRcvdUpdates()); 114 addMonitorData(attributes, "sent-updates", domain.getNumSentUpdates()); 117 addMonitorData(attributes, "replayed-updates", 121 addMonitorData(attributes, "serve 268 addMonitorData( ArrayList<Attribute> attributes, String name, int value) argument 286 addMonitorData( ArrayList<Attribute> attributes, String name, long value) argument 304 addMonitorData( ArrayList<Attribute> attributes, String name, String value) argument [all...] |
/forgerock/opendj2.6.2/src/server/org/opends/server/types/ |
H A D | AttributeValueIterable.java | 42 * achieved without having to duplicate the set of attributes. 52 // The set of attributes having the same type and options. 53 private Iterable<Attribute> attributes; field in class:AttributeValueIterable 63 * @param attributes The set of attributes having the same type. 66 public AttributeValueIterable(Iterable<Attribute> attributes) { argument 67 this(attributes, null); 74 * @param attributes The set of attributes having the same type. 80 public AttributeValueIterable(Iterable<Attribute> attributes, argument [all...] |
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/ |
H A D | CreateEntryMockLDAPConnection.java | 57 // The expected set of attributes (attribute name -> list of 59 private final Map<String, List<String>> attributes = new HashMap<String, List<String>>(); field in class:CreateEntryMockLDAPConnection 95 attributes.put(expectedName, Arrays.asList(expectedValues)); 113 public void createEntry(LdapName dn, Attributes attributes) argument 119 this.attributes); 120 NamingEnumeration<? extends Attribute> ne = attributes.getAll(); 132 Assert.fail("Missing expected attributes: " + expected.keySet());
|
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/util/ |
H A D | TestAddChangeRecordEntry.java | 53 // Set of attributes. 54 private Map<AttributeType, List<Attribute>> attributes; field in class:TestAddChangeRecordEntry 71 attributes = new HashMap<AttributeType, List<Attribute>>(); 75 attributes.put(attribute.getAttributeType(), alist); 87 new AddChangeRecordEntry(null, attributes); 99 attributes); 116 attributes); 129 AddChangeRecordEntry entry = new AddChangeRecordEntry(DN.nullDN(), attributes); 158 AddChangeRecordEntry entry = new AddChangeRecordEntry(DN.nullDN(), attributes);
|