Searched defs:children (Results 1 - 25 of 106) sorted by relevance

12345

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DExtension.java56 private List children = null; field in class:Extension
63 * @param children a list of XML <code>String</code> object.
66 public Extension(List children) throws FSMsgException { argument
67 validateChildren(children);
68 this.children = children;
93 if (children == null) {
94 children = new ArrayList();
96 children.add(XMLUtils.print(child));
124 return children;
133 setChildren(List children) argument
358 validateChildren(List children) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DExtension.java56 private List children = null; field in class:Extension
63 * @param children a list of XML <code>String</code> object.
66 public Extension(List children) throws FSMsgException { argument
67 validateChildren(children);
68 this.children = children;
93 if (children == null) {
94 children = new ArrayList();
96 children.add(XMLUtils.print(child));
124 return children;
133 setChildren(List children) argument
358 validateChildren(List children) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DMockLDAPConnection.java71 // The entry's children.
72 private final List<MockEntry> children; field in class:MockLDAPConnection.MockEntry
90 this.children = new LinkedList<MockEntry>();
107 * Get the entry's children.
109 * @return Returns the entry's children.
112 return children;
219 for (MockEntry child : entry.children) {
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DMockLDAPConnection.java70 // The entry's children.
71 private final List<MockEntry> children; field in class:MockLDAPConnection.MockEntry
89 this.children = new LinkedList<MockEntry>();
106 * Get the entry's children.
108 * @return Returns the entry's children.
111 return children;
218 for (MockEntry child : entry.children) {
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DMockLDAPConnection.java71 // The entry's children.
72 private final List<MockEntry> children; field in class:MockLDAPConnection.MockEntry
90 this.children = new LinkedList<MockEntry>();
107 * Get the entry's children.
109 * @return Returns the entry's children.
112 return children;
219 for (MockEntry child : entry.children) {
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DMockLDAPConnection.java70 // The entry's children.
71 private final List<MockEntry> children; field in class:MockLDAPConnection.MockEntry
89 this.children = new LinkedList<MockEntry>();
106 * Get the entry's children.
108 * @return Returns the entry's children.
111 return children;
218 for (MockEntry child : entry.children) {
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/admin/client/ldap/
H A DMockLDAPConnection.java71 // The entry's children.
72 private final List<MockEntry> children; field in class:MockLDAPConnection.MockEntry
90 this.children = new LinkedList<MockEntry>();
107 * Get the entry's children.
109 * @return Returns the entry's children.
112 return children;
219 for (MockEntry child : entry.children) {
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/admin/client/ldap/
H A DMockLDAPConnection.java71 /** The entry's children. */
72 private final List<MockEntry> children; field in class:MockLDAPConnection.MockEntry
90 this.children = new LinkedList<>();
107 * Get the entry's children.
109 * @return Returns the entry's children.
112 return children;
211 for (MockEntry child : entry.children)
/forgerock/opendj2/src/server/org/opends/server/config/
H A DConfigEntry.java67 /** The set of immediate children for this configuration entry. */
68 private final ConcurrentMap<DN,ConfigEntry> children; field in class:ConfigEntry
103 children = new ConcurrentHashMap<DN,ConfigEntry>();
129 * maintained, it will keep the same parent and set of children, and all other
302 * Retrieves the set of children associated with this configuration entry.
305 * @return The set of children associated with this configuration entry.
309 return children;
315 * Indicates whether this entry has any children.
317 * @return <CODE>true</CODE> if this entry has one or more children, or
322 return !children
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/config/
H A DConfigEntry.java77 // The set of immediate children for this configuration entry.
78 private ConcurrentHashMap<DN,ConfigEntry> children; field in class:ConfigEntry
113 children = new ConcurrentHashMap<DN,ConfigEntry>();
139 * maintained, it will keep the same parent and set of children, and all other
313 * Retrieves the set of children associated with this configuration entry.
316 * @return The set of children associated with this configuration entry.
320 return children;
326 * Indicates whether this entry has any children.
328 * @return <CODE>true</CODE> if this entry has one or more children, or
333 return (! children
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/config/
H A DConfigEntry.java77 // The set of immediate children for this configuration entry.
78 private ConcurrentHashMap<DN,ConfigEntry> children; field in class:ConfigEntry
113 children = new ConcurrentHashMap<DN,ConfigEntry>();
139 * maintained, it will keep the same parent and set of children, and all other
313 * Retrieves the set of children associated with this configuration entry.
316 * @return The set of children associated with this configuration entry.
320 return children;
326 * Indicates whether this entry has any children.
328 * @return <CODE>true</CODE> if this entry has one or more children, or
333 return (! children
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/config/
H A DConfigEntry.java77 // The set of immediate children for this configuration entry.
78 private ConcurrentHashMap<DN,ConfigEntry> children; field in class:ConfigEntry
113 children = new ConcurrentHashMap<DN,ConfigEntry>();
139 * maintained, it will keep the same parent and set of children, and all other
313 * Retrieves the set of children associated with this configuration entry.
316 * @return The set of children associated with this configuration entry.
320 return children;
326 * Indicates whether this entry has any children.
328 * @return <CODE>true</CODE> if this entry has one or more children, or
333 return (! children
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/config/
H A DConfigEntry.java67 /** The set of immediate children for this configuration entry. */
68 private final ConcurrentMap<DN,ConfigEntry> children; field in class:ConfigEntry
103 children = new ConcurrentHashMap<DN,ConfigEntry>();
129 * maintained, it will keep the same parent and set of children, and all other
302 * Retrieves the set of children associated with this configuration entry.
305 * @return The set of children associated with this configuration entry.
309 return children;
315 * Indicates whether this entry has any children.
317 * @return <CODE>true</CODE> if this entry has one or more children, or
322 return !children
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/flatfile/
H A DSMSFlatFileTreeNode.java57 private Set children = new HashSet(); field in class:SMSFlatFileTreeNode
117 children.add(child);
121 for (Iterator i = children.iterator(); (i.hasNext()) && !added;
140 for (Iterator i = children.iterator(); (i.hasNext()) && !removed; ) {
158 for (Iterator i = children.iterator(); i.hasNext(); ) {
205 for (Iterator i = children.iterator(); (i.hasNext() && !exist);) {
225 for (Iterator i = children.iterator();
257 for (Iterator i = children.iterator(); i.hasNext(); ) {
324 for (Iterator i = children.iterator(); i.hasNext(); ) {
367 Set children
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/config/
H A DConfigEntry.java69 /** The set of immediate children for this configuration entry. */
70 private final ConcurrentMap<DN,ConfigEntry> children; field in class:ConfigEntry
105 children = new ConcurrentHashMap<>();
131 * maintained, it will keep the same parent and set of children, and all other
293 * Retrieves the set of children associated with this configuration entry.
296 * @return The set of children associated with this configuration entry.
300 return children;
306 * Indicates whether this entry has any children.
308 * @return <CODE>true</CODE> if this entry has one or more children, or
313 return !children
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMTabEntry.java62 private List children = new ArrayList(); field in class:AMTabEntry
119 int sz = children.size();
121 AMTabEntry child = (AMTabEntry)children.get(i);
141 children.clear();
146 for (Iterator i = children.iterator(); i.hasNext() && !found;) {
154 children.add(tab);
164 for (Iterator i = children.iterator();
199 return children;
221 if (!children.isEmpty()) {
224 for (Iterator iter = children
[all...]
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMPropertySheetModel.java98 private Set children = new HashSet(); field in class:AMPropertySheetModel
126 return children;
253 NodeList children = n.getChildNodes() ;
254 if (children != null) {
255 int length = children.getLength();
257 Node node = children.item(i);
404 children.add(view);
428 for (Iterator iter = children.iterator(); iter.hasNext(); ) {
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/
H A DAMTabEntry.java62 private List children = new ArrayList(); field in class:AMTabEntry
119 int sz = children.size();
121 AMTabEntry child = (AMTabEntry)children.get(i);
141 children.clear();
146 for (Iterator i = children.iterator(); i.hasNext() && !found;) {
154 children.add(tab);
164 for (Iterator i = children.iterator();
199 return children;
221 if (!children.isEmpty()) {
224 for (Iterator iter = children
[all...]
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMPropertySheetModel.java98 private Set children = new HashSet(); field in class:AMPropertySheetModel
126 return children;
253 NodeList children = n.getChildNodes() ;
254 if (children != null) {
255 int length = children.getLength();
257 Node node = children.item(i);
404 children.add(view);
428 for (Iterator iter = children.iterator(); iter.hasNext(); ) {
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/flatfile/
H A DSMSFlatFileTreeNode.java57 private Set children = new HashSet(); field in class:SMSFlatFileTreeNode
117 children.add(child);
121 for (Iterator i = children.iterator(); (i.hasNext()) && !added;
140 for (Iterator i = children.iterator(); (i.hasNext()) && !removed; ) {
158 for (Iterator i = children.iterator(); i.hasNext(); ) {
205 for (Iterator i = children.iterator(); (i.hasNext() && !exist);) {
225 for (Iterator i = children.iterator();
257 for (Iterator i = children.iterator(); i.hasNext(); ) {
324 for (Iterator i = children.iterator(); i.hasNext(); ) {
367 Set children
[all...]
/forgerock/opendj2/src/server/org/opends/server/admin/
H A DAbstractManagedObjectDefinition.java120 AbstractManagedObjectDefinition<? extends C, ? extends S>> children; field in class:AbstractManagedObjectDefinition
155 this.children = new HashMap<String,
194 children.values());
197 children.values()) {
370 AbstractManagedObjectDefinition<? extends C, ? extends S> d = children
376 children.values()) {
406 return Collections.unmodifiableCollection(children.values());
780 return !children.isEmpty();
846 * managed object definition is a member of the set of children
1111 parent.children
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/
H A DAbstractManagedObjectDefinition.java121 AbstractManagedObjectDefinition<? extends C, ? extends S>> children; field in class:AbstractManagedObjectDefinition
156 this.children = new HashMap<String,
195 children.values());
198 children.values()) {
371 AbstractManagedObjectDefinition<? extends C, ? extends S> d = children
377 children.values()) {
407 return Collections.unmodifiableCollection(children.values());
781 return !children.isEmpty();
847 * managed object definition is a member of the set of children
1112 parent.children
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/
H A DAbstractManagedObjectDefinition.java121 AbstractManagedObjectDefinition<? extends C, ? extends S>> children; field in class:AbstractManagedObjectDefinition
156 this.children = new HashMap<String,
195 children.values());
198 children.values()) {
371 AbstractManagedObjectDefinition<? extends C, ? extends S> d = children
377 children.values()) {
407 return Collections.unmodifiableCollection(children.values());
781 return !children.isEmpty();
847 * managed object definition is a member of the set of children
1112 parent.children
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/admin/
H A DAbstractManagedObjectDefinition.java120 AbstractManagedObjectDefinition<? extends C, ? extends S>> children; field in class:AbstractManagedObjectDefinition
155 this.children = new HashMap<String,
194 children.values());
197 children.values()) {
370 AbstractManagedObjectDefinition<? extends C, ? extends S> d = children
376 children.values()) {
406 return Collections.unmodifiableCollection(children.values());
780 return !children.isEmpty();
846 * managed object definition is a member of the set of children
1111 parent.children
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/admin/
H A DAbstractManagedObjectDefinition.java121 AbstractManagedObjectDefinition<? extends C, ? extends S>> children; field in class:AbstractManagedObjectDefinition
156 this.children = new HashMap<String,
195 children.values());
198 children.values()) {
371 AbstractManagedObjectDefinition<? extends C, ? extends S> d = children
377 children.values()) {
407 return Collections.unmodifiableCollection(children.values());
781 return !children.isEmpty();
847 * managed object definition is a member of the set of children
1112 parent.children
[all...]

Completed in 242 milliseconds

12345