Searched defs:sr (Results 1 - 25 of 116) sorted by relevance

12345

/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/event/
H A DEntryReadEvent.java39 private CustomSearchResult sr; field in class:EntryReadEvent
44 * @param sr the search result containing the entry that was read.
46 public EntryReadEvent(Object source, CustomSearchResult sr) argument
49 this.sr = sr;
67 return sr;
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/event/
H A DEntryReadEvent.java40 private CustomSearchResult sr; field in class:EntryReadEvent
45 * @param sr the search result containing the entry that was read.
47 public EntryReadEvent(Object source, CustomSearchResult sr) argument
50 this.sr = sr;
68 return sr;
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/event/
H A DEntryReadEvent.java40 private CustomSearchResult sr; field in class:EntryReadEvent
45 * @param sr the search result containing the entry that was read.
47 public EntryReadEvent(Object source, CustomSearchResult sr) argument
50 this.sr = sr;
68 return sr;
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/event/
H A DEntryReadEvent.java39 private CustomSearchResult sr; field in class:EntryReadEvent
44 * @param sr the search result containing the entry that was read.
46 public EntryReadEvent(Object source, CustomSearchResult sr) argument
49 this.sr = sr;
67 return sr;
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/event/
H A DEntryReadEvent.java40 private CustomSearchResult sr; field in class:EntryReadEvent
45 * @param sr the search result containing the entry that was read.
47 public EntryReadEvent(Object source, CustomSearchResult sr) argument
50 this.sr = sr;
68 return sr;
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/event/
H A DEntryReadEvent.java39 private CustomSearchResult sr; field in class:EntryReadEvent
44 * @param sr the search result containing the entry that was read.
46 public EntryReadEvent(Object source, CustomSearchResult sr) argument
49 this.sr = sr;
67 return sr;
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDIFViewEntryPanel.java159 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
162 if (sr != null)
164 sr = filterSearchResult(sr);
166 if ((searchResult != null) && (sr != null))
168 sameEntry = searchResult.getDN().equals(sr.getDN());
171 searchResult = sr;
173 updateTitle(sr, path);
177 sb.append("dn: ").append(sr.getDN());
182 for (String attrName : sr
[all...]
H A DTableViewEntryPanel.java174 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
177 if (sr != null)
179 sr = filterSearchResult(sr);
181 if ((searchResult != null) && (sr != null))
183 sameEntry = searchResult.getDN().equals(sr.getDN());
186 searchResult = sr;
194 updateTitle(sr, path);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/util/
H A DLDAPEntryReader.java89 SearchResult sr = null;
92 sr = en.next();
95 return new CustomSearchResult(sr, dn);
114 public void backgroundTaskCompleted(CustomSearchResult sr, argument
121 notifyListeners(sr);
166 * @param sr the new entry in form of CustomSearchResult.
168 private void notifyListeners(CustomSearchResult sr) argument
170 EntryReadEvent ev = new EntryReadEvent(this, sr);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCustomSearchResult.java93 * @param sr the SearchResult.
98 public CustomSearchResult(SearchResult sr, String baseDN) argument
101 String sName = sr.getName();
135 Attributes attrs = sr.getAttributes();
219 CustomSearchResult sr = new CustomSearchResult(dn);
220 sr.attributes = new HashMap<String, List<Object>>(attributes);
221 sr.attrNames = new TreeSet<String>(attrNames);
222 sr.toString = toString;
223 sr.hashCode = hashCode;
224 return sr;
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDIFViewEntryPanel.java158 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
161 if ((searchResult != null) && (sr != null))
163 sameEntry = searchResult.getDN().equals(sr.getDN());
166 searchResult = sr;
168 updateTitle(sr, path);
172 sb.append("dn: ").append(sr.getDN());
177 for (String attrName : sr.getAttributeNames())
179 List<Object> values = sr.getAttributeValues(attrName);
207 for (String attrName : sr.getAttributeNames())
211 List<Object> values = sr
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/util/
H A DLDAPEntryReader.java88 SearchResult sr = null;
91 sr = en.next();
94 return new CustomSearchResult(sr, dn);
113 public void backgroundTaskCompleted(CustomSearchResult sr, argument
120 notifyListeners(sr);
165 * @param sr the new entry in form of CustomSearchResult.
167 private void notifyListeners(CustomSearchResult sr) argument
169 EntryReadEvent ev = new EntryReadEvent(this, sr);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCustomSearchResult.java94 * @param sr the SearchResult.
99 public CustomSearchResult(SearchResult sr, String baseDN) argument
102 String sName = sr.getName();
136 Attributes attrs = sr.getAttributes();
220 CustomSearchResult sr = new CustomSearchResult(dn);
221 sr.attributes = new HashMap<String, List<Object>>(attributes);
222 sr.attrNames = new TreeSet<String>(attrNames);
223 sr.toString = toString;
224 sr.hashCode = hashCode;
225 return sr;
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCustomSearchResult.java94 * @param sr the SearchResult.
99 public CustomSearchResult(SearchResult sr, String baseDN) argument
102 String sName = sr.getName();
136 Attributes attrs = sr.getAttributes();
220 CustomSearchResult sr = new CustomSearchResult(dn);
221 sr.attributes = new HashMap<String, List<Object>>(attributes);
222 sr.attrNames = new TreeSet<String>(attrNames);
223 sr.toString = toString;
224 sr.hashCode = hashCode;
225 return sr;
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDIFViewEntryPanel.java159 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
162 if ((searchResult != null) && (sr != null))
164 sameEntry = searchResult.getDN().equals(sr.getDN());
167 searchResult = sr;
169 updateTitle(sr, path);
173 sb.append("dn: ").append(sr.getDN());
178 for (String attrName : sr.getAttributeNames())
180 List<Object> values = sr.getAttributeValues(attrName);
208 for (String attrName : sr.getAttributeNames())
212 List<Object> values = sr
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/util/
H A DLDAPEntryReader.java89 SearchResult sr = null;
92 sr = en.next();
95 return new CustomSearchResult(sr, dn);
114 public void backgroundTaskCompleted(CustomSearchResult sr, argument
121 notifyListeners(sr);
166 * @param sr the new entry in form of CustomSearchResult.
168 private void notifyListeners(CustomSearchResult sr) argument
170 EntryReadEvent ev = new EntryReadEvent(this, sr);
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCustomSearchResult.java93 * @param sr the SearchResult.
98 public CustomSearchResult(SearchResult sr, String baseDN) argument
101 String sName = sr.getName();
135 Attributes attrs = sr.getAttributes();
219 CustomSearchResult sr = new CustomSearchResult(dn);
220 sr.attributes = new HashMap<String, List<Object>>(attributes);
221 sr.attrNames = new TreeSet<String>(attrNames);
222 sr.toString = toString;
223 sr.hashCode = hashCode;
224 return sr;
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDIFViewEntryPanel.java158 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
161 if ((searchResult != null) && (sr != null))
163 sameEntry = searchResult.getDN().equals(sr.getDN());
166 searchResult = sr;
168 updateTitle(sr, path);
172 sb.append("dn: ").append(sr.getDN());
177 for (String attrName : sr.getAttributeNames())
179 List<Object> values = sr.getAttributeValues(attrName);
207 for (String attrName : sr.getAttributeNames())
211 List<Object> values = sr
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DLDAPEntryReader.java88 SearchResult sr = null;
91 sr = en.next();
94 return new CustomSearchResult(sr, dn);
113 public void backgroundTaskCompleted(CustomSearchResult sr, argument
120 notifyListeners(sr);
165 * @param sr the new entry in form of CustomSearchResult.
167 private void notifyListeners(CustomSearchResult sr) argument
169 EntryReadEvent ev = new EntryReadEvent(this, sr);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DCustomSearchResult.java94 * @param sr the SearchResult.
99 public CustomSearchResult(SearchResult sr, String baseDN) argument
102 String sName = sr.getName();
136 Attributes attrs = sr.getAttributes();
220 CustomSearchResult sr = new CustomSearchResult(dn);
221 sr.attributes = new HashMap<String, List<Object>>(attributes);
222 sr.attrNames = new TreeSet<String>(attrNames);
223 sr.toString = toString;
224 sr.hashCode = hashCode;
225 return sr;
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DLDIFViewEntryPanel.java159 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
162 if (sr != null)
164 sr = filterSearchResult(sr);
166 if ((searchResult != null) && (sr != null))
168 sameEntry = searchResult.getDN().equals(sr.getDN());
171 searchResult = sr;
173 updateTitle(sr, path);
177 sb.append("dn: ").append(sr.getDN());
182 for (String attrName : sr
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/util/
H A DLDAPEntryReader.java89 SearchResult sr = null;
92 sr = en.next();
95 return new CustomSearchResult(sr, dn);
114 public void backgroundTaskCompleted(CustomSearchResult sr, argument
121 notifyListeners(sr);
166 * @param sr the new entry in form of CustomSearchResult.
168 private void notifyListeners(CustomSearchResult sr) argument
170 EntryReadEvent ev = new EntryReadEvent(this, sr);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/
H A DCustomSearchResult.java89 * @param sr the SearchResult.
94 public CustomSearchResult(SearchResult sr, String baseDN) argument
97 String sName = sr.getName();
131 Attributes attrs = sr.getAttributes();
210 CustomSearchResult sr = new CustomSearchResult(dn);
211 sr.attributes = new HashMap<>(attributes);
212 sr.attrNames = new TreeSet<>(attrNames);
213 sr.toString = toString;
214 sr.hashCode = hashCode;
215 return sr;
235 attrValuesEqual(CustomSearchResult sr) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/util/
H A DLDAPEntryReader.java86 SearchResult sr = null;
89 sr = en.next();
92 return new CustomSearchResult(sr, dn);
109 public void backgroundTaskCompleted(CustomSearchResult sr, argument
116 notifyListeners(sr);
161 * @param sr the new entry in form of CustomSearchResult.
163 private void notifyListeners(CustomSearchResult sr) argument
165 EntryReadEvent ev = new EntryReadEvent(this, sr);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DLDIFViewEntryPanel.java169 public void update(CustomSearchResult sr, boolean isReadOnly, TreePath path) argument
172 if (searchResult != null && sr != null)
174 sameEntry = searchResult.getDN().equals(sr.getDN());
177 searchResult = sr;
178 updateTitle(sr, path);
181 sb.append("dn: ").append(sr.getDN());
186 for (String attrName : sr.getAttributeNames())
188 List<Object> values = sr.getAttributeValues(attrName);
203 for (String attrName : sr.getAttributeNames())
207 List<Object> values = sr
[all...]

Completed in 54 milliseconds

12345