Searched defs:rawBaseDN (Results 26 - 45 of 45) sorted by relevance

12

/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DSearchOperationWrapper.java205 public void setRawBaseDN(ByteString rawBaseDN) argument
207 getOperation().setRawBaseDN(rawBaseDN);
H A DSearchOperationBasis.java113 private ByteString rawBaseDN; field in class:SearchOperationBasis
171 * @param rawBaseDN The raw, unprocessed base DN as included in the
187 ByteString rawBaseDN, SearchScope scope,
194 this.rawBaseDN = rawBaseDN;
245 rawBaseDN = ByteString.valueOf(baseDN.toString());
283 return rawBaseDN;
288 public final void setRawBaseDN(ByteString rawBaseDN) argument
290 this.rawBaseDN = rawBaseDN;
184 SearchOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter rawFilter, Set<String> attributes) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DSearchOperation.java67 * @param rawBaseDN The raw, unprocessed base DN as included in the request
70 void setRawBaseDN(ByteString rawBaseDN); argument
H A DSearchOperationWrapper.java208 public void setRawBaseDN(ByteString rawBaseDN) argument
210 getOperation().setRawBaseDN(rawBaseDN);
H A DSearchOperationBasis.java131 private ByteString rawBaseDN; field in class:SearchOperationBasis
189 * @param rawBaseDN The raw, unprocessed base DN as included in the
205 ByteString rawBaseDN, SearchScope scope,
212 this.rawBaseDN = rawBaseDN;
263 rawBaseDN = ByteString.valueOfUtf8(baseDN.toString());
300 return rawBaseDN;
304 public final void setRawBaseDN(ByteString rawBaseDN) argument
306 this.rawBaseDN = rawBaseDN;
202 SearchOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawBaseDN, SearchScope scope, DereferenceAliasesPolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter rawFilter, Set<String> attributes) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/types/
H A DLDAPURL.java85 private String rawBaseDN; field in class:LDAPURL
111 * @param rawBaseDN The raw base DN for this LDAP URL.
120 String rawBaseDN, LinkedHashSet<String> attributes,
141 if (rawBaseDN == null)
143 this.rawBaseDN = "";
147 this.rawBaseDN = rawBaseDN;
224 this.rawBaseDN = DEFAULT_BASE_DN.toString();
229 this.rawBaseDN = baseDN.toString();
997 return rawBaseDN;
119 LDAPURL(String scheme, String host, int port, String rawBaseDN, LinkedHashSet<String> attributes, SearchScope scope, String rawFilter, LinkedList<String> extensions) argument
1008 setRawBaseDN(String rawBaseDN) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DSearchOperationBasis.java119 private ByteString rawBaseDN; field in class:SearchOperationBasis
183 * @param rawBaseDN The raw, unprocessed base DN as included in the
199 ByteString rawBaseDN, SearchScope scope,
207 this.rawBaseDN = rawBaseDN;
323 rawBaseDN = ByteString.valueOf(baseDN.toString());
380 return rawBaseDN;
389 public final void setRawBaseDN(ByteString rawBaseDN) argument
391 this.rawBaseDN = rawBaseDN;
196 SearchOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter rawFilter, Set<String> attributes) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java2029 * @param rawBaseDN The base DN for the search.
2042 public InternalSearchOperation processSearch(String rawBaseDN, argument
2059 return processSearch(ByteString.valueOf(rawBaseDN), scope,
2069 * @param rawBaseDN The base DN for the search.
2090 processSearch(String rawBaseDN, SearchScope scope, argument
2097 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2108 * @param rawBaseDN The base DN for the search.
2132 processSearch(String rawBaseDN, SearchScope scope, argument
2140 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2151 * @param rawBaseDN Th
2177 processSearch(String rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, String filterString, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
2221 processSearch(ByteString rawBaseDN, SearchScope scope, RawFilter filter) argument
2253 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes) argument
2290 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, InternalSearchListener searchListener) argument
2330 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java775 * @param rawBaseDN The base DN for the search.
783 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
786 return processSearch(rawBaseDN, scope,
796 * @param rawBaseDN The base DN for the search.
809 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
818 new ArrayList<Control>(0), rawBaseDN,
840 * @param rawBaseDN The base DN for the search.
854 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
864 new ArrayList<Control>(0), rawBaseDN,
/forgerock/opendj2/src/server/org/opends/server/core/
H A DSearchOperationBasis.java113 private ByteString rawBaseDN; field in class:SearchOperationBasis
171 * @param rawBaseDN The raw, unprocessed base DN as included in the
187 ByteString rawBaseDN, SearchScope scope,
194 this.rawBaseDN = rawBaseDN;
245 rawBaseDN = ByteString.valueOf(baseDN.toString());
283 return rawBaseDN;
288 public final void setRawBaseDN(ByteString rawBaseDN) argument
290 this.rawBaseDN = rawBaseDN;
184 SearchOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter rawFilter, Set<String> attributes) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java2017 * @param rawBaseDN The base DN for the search.
2030 public InternalSearchOperation processSearch(String rawBaseDN, argument
2047 return processSearch(ByteString.valueOf(rawBaseDN), scope,
2057 * @param rawBaseDN The base DN for the search.
2078 processSearch(String rawBaseDN, SearchScope scope, argument
2085 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2096 * @param rawBaseDN The base DN for the search.
2120 processSearch(String rawBaseDN, SearchScope scope, argument
2128 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2139 * @param rawBaseDN Th
2165 processSearch(String rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, String filterString, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
2209 processSearch(ByteString rawBaseDN, SearchScope scope, RawFilter filter) argument
2241 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes) argument
2278 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, InternalSearchListener searchListener) argument
2318 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java770 * @param rawBaseDN The base DN for the search.
778 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
781 return processSearch(rawBaseDN, scope,
791 * @param rawBaseDN The base DN for the search.
804 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
813 new ArrayList<Control>(0), rawBaseDN,
835 * @param rawBaseDN The base DN for the search.
849 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
859 new ArrayList<Control>(0), rawBaseDN,
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DSearchOperationBasis.java119 private ByteString rawBaseDN; field in class:SearchOperationBasis
183 * @param rawBaseDN The raw, unprocessed base DN as included in the
199 ByteString rawBaseDN, SearchScope scope,
207 this.rawBaseDN = rawBaseDN;
323 rawBaseDN = ByteString.valueOf(baseDN.toString());
380 return rawBaseDN;
389 public final void setRawBaseDN(ByteString rawBaseDN) argument
391 this.rawBaseDN = rawBaseDN;
196 SearchOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter rawFilter, Set<String> attributes) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java2029 * @param rawBaseDN The base DN for the search.
2042 public InternalSearchOperation processSearch(String rawBaseDN, argument
2059 return processSearch(ByteString.valueOf(rawBaseDN), scope,
2069 * @param rawBaseDN The base DN for the search.
2090 processSearch(String rawBaseDN, SearchScope scope, argument
2097 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2108 * @param rawBaseDN The base DN for the search.
2132 processSearch(String rawBaseDN, SearchScope scope, argument
2140 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2151 * @param rawBaseDN Th
2177 processSearch(String rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, String filterString, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
2221 processSearch(ByteString rawBaseDN, SearchScope scope, RawFilter filter) argument
2253 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes) argument
2290 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, InternalSearchListener searchListener) argument
2330 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java771 * @param rawBaseDN The base DN for the search.
779 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
782 return processSearch(rawBaseDN, scope,
792 * @param rawBaseDN The base DN for the search.
805 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
814 new ArrayList<Control>(0), rawBaseDN,
836 * @param rawBaseDN The base DN for the search.
850 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
860 new ArrayList<Control>(0), rawBaseDN,
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DSearchOperationBasis.java119 private ByteString rawBaseDN; field in class:SearchOperationBasis
183 * @param rawBaseDN The raw, unprocessed base DN as included in the
199 ByteString rawBaseDN, SearchScope scope,
207 this.rawBaseDN = rawBaseDN;
323 rawBaseDN = ByteString.valueOf(baseDN.toString());
380 return rawBaseDN;
389 public final void setRawBaseDN(ByteString rawBaseDN) argument
391 this.rawBaseDN = rawBaseDN;
196 SearchOperationBasis(ClientConnection clientConnection, long operationID, int messageID, List<Control> requestControls, ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter rawFilter, Set<String> attributes) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java2029 * @param rawBaseDN The base DN for the search.
2042 public InternalSearchOperation processSearch(String rawBaseDN, argument
2059 return processSearch(ByteString.valueOf(rawBaseDN), scope,
2069 * @param rawBaseDN The base DN for the search.
2090 processSearch(String rawBaseDN, SearchScope scope, argument
2097 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2108 * @param rawBaseDN The base DN for the search.
2132 processSearch(String rawBaseDN, SearchScope scope, argument
2140 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2151 * @param rawBaseDN Th
2177 processSearch(String rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, String filterString, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
2221 processSearch(ByteString rawBaseDN, SearchScope scope, RawFilter filter) argument
2253 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes) argument
2290 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, InternalSearchListener searchListener) argument
2330 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java775 * @param rawBaseDN The base DN for the search.
783 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
786 return processSearch(rawBaseDN, scope,
796 * @param rawBaseDN The base DN for the search.
809 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
818 new ArrayList<Control>(0), rawBaseDN,
840 * @param rawBaseDN The base DN for the search.
854 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
864 new ArrayList<Control>(0), rawBaseDN,
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/internal/
H A DInternalClientConnection.java2017 * @param rawBaseDN The base DN for the search.
2030 public InternalSearchOperation processSearch(String rawBaseDN, argument
2047 return processSearch(ByteString.valueOf(rawBaseDN), scope,
2057 * @param rawBaseDN The base DN for the search.
2078 processSearch(String rawBaseDN, SearchScope scope, argument
2085 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2096 * @param rawBaseDN The base DN for the search.
2120 processSearch(String rawBaseDN, SearchScope scope, argument
2128 return processSearch(rawBaseDN, scope, derefPolicy, sizeLimit,
2139 * @param rawBaseDN Th
2165 processSearch(String rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, String filterString, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
2209 processSearch(ByteString rawBaseDN, SearchScope scope, RawFilter filter) argument
2241 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes) argument
2278 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, InternalSearchListener searchListener) argument
2318 processSearch(ByteString rawBaseDN, SearchScope scope, DereferencePolicy derefPolicy, int sizeLimit, int timeLimit, boolean typesOnly, RawFilter filter, LinkedHashSet<String> attributes, List<Control> controls, InternalSearchListener searchListener) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DJmxClientConnection.java770 * @param rawBaseDN The base DN for the search.
778 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
781 return processSearch(rawBaseDN, scope,
791 * @param rawBaseDN The base DN for the search.
804 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
813 new ArrayList<Control>(0), rawBaseDN,
835 * @param rawBaseDN The base DN for the search.
849 public InternalSearchOperation processSearch(ByteString rawBaseDN, argument
859 new ArrayList<Control>(0), rawBaseDN,

Completed in 105 milliseconds

12