Searched defs:connection (Results 26 - 50 of 361) sorted by relevance

1234567891011>>

/forgerock/opendj2-jel-hg/src/dsml/org/opends/dsml/protocol/
H A DDSMLAddOperation.java57 private LDAPConnection connection; field in class:DSMLAddOperation
60 * Create the instance with the specified LDAP connection.
62 * @param connection The LDAP connection to the server.
64 public DSMLAddOperation(LDAPConnection connection) argument
66 this.connection = connection;
114 connection.getLDAPWriter().writeMessage(msg);
117 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLCompareOperation.java53 private LDAPConnection connection; field in class:DSMLCompareOperation
56 * Create an instance with the specified LDAP connection.
58 * @param connection The LDAP connection to send the request on.
60 public DSMLCompareOperation(LDAPConnection connection) argument
62 this.connection = connection;
102 connection.getLDAPWriter().writeMessage(msg);
105 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLDeleteOperation.java58 private LDAPConnection connection; field in class:DSMLDeleteOperation
61 * Create an instance with the specified LDAP connection.
63 * @param connection The LDAP connection to send the request on.
65 public DSMLDeleteOperation(LDAPConnection connection) argument
67 this.connection = connection;
101 connection.getLDAPWriter().writeMessage(msg);
104 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLModifyDNOperation.java54 private LDAPConnection connection; field in class:DSMLModifyDNOperation
57 * Create the instance with the specified connection.
59 * @param connection The LDAP connection to send the request on.
61 public DSMLModifyDNOperation(LDAPConnection connection) argument
63 this.connection = connection;
111 connection.getLDAPWriter().writeMessage(msg);
114 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLModifyOperation.java58 private LDAPConnection connection; field in class:DSMLModifyOperation
61 * Create the instance with the specified LDAP connection.
63 * @param connection The LDAP connection to send the request.
65 public DSMLModifyOperation(LDAPConnection connection) argument
67 this.connection = connection;
135 connection.getLDAPWriter().writeMessage(msg);
138 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/opendj-v3/opendj-dsml-servlet/src/main/java/org/opends/dsml/protocol/
H A DDSMLAbandonOperation.java49 private LDAPConnection connection; field in class:DSMLAbandonOperation
52 * Create an instance with the specified LDAP connection.
54 * @param connection The LDAP connection to send the request on.
56 public DSMLAbandonOperation(LDAPConnection connection) argument
58 this.connection = connection;
98 connection.getLDAPWriter().writeMessage(msg);
H A DDSMLAddOperation.java56 private LDAPConnection connection; field in class:DSMLAddOperation
59 * Create the instance with the specified LDAP connection.
61 * @param connection The LDAP connection to the server.
63 public DSMLAddOperation(LDAPConnection connection) argument
65 this.connection = connection;
113 connection.getLDAPWriter().writeMessage(msg);
116 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLCompareOperation.java52 private LDAPConnection connection; field in class:DSMLCompareOperation
55 * Create an instance with the specified LDAP connection.
57 * @param connection The LDAP connection to send the request on.
59 public DSMLCompareOperation(LDAPConnection connection) argument
61 this.connection = connection;
101 connection.getLDAPWriter().writeMessage(msg);
104 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLDeleteOperation.java57 private LDAPConnection connection; field in class:DSMLDeleteOperation
60 * Create an instance with the specified LDAP connection.
62 * @param connection The LDAP connection to send the request on.
64 public DSMLDeleteOperation(LDAPConnection connection) argument
66 this.connection = connection;
100 connection.getLDAPWriter().writeMessage(msg);
103 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLModifyDNOperation.java53 private LDAPConnection connection; field in class:DSMLModifyDNOperation
56 * Create the instance with the specified connection.
58 * @param connection The LDAP connection to send the request on.
60 public DSMLModifyDNOperation(LDAPConnection connection) argument
62 this.connection = connection;
110 connection.getLDAPWriter().writeMessage(msg);
113 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
H A DDSMLModifyOperation.java57 private LDAPConnection connection; field in class:DSMLModifyOperation
60 * Create the instance with the specified LDAP connection.
62 * @param connection The LDAP connection to send the request.
64 public DSMLModifyOperation(LDAPConnection connection) argument
66 this.connection = connection;
132 connection.getLDAPWriter().writeMessage(msg);
135 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/openidm-v4/openidm-repo-jdbc/src/main/java/org/forgerock/openidm/repo/jdbc/impl/
H A DDB2SQLExceptionHandler.java39 public boolean isRetryable(SQLException ex, Connection connection) { argument
/forgerock/opendj-b2.6/src/server/org/opends/server/core/networkgroups/
H A DANDConnectionCriteria.java42 * A connection criteria which matches connections if and only if all
44 * connection criteria will always match.
49 // The list of underlying connection criteria.
55 * Creates a new AND connection criteria using the provided
72 public boolean matches(ClientConnection connection) argument
76 if (!filter.matches(connection))
90 public boolean willMatchAfterBind(ClientConnection connection, argument
95 if (!filter.willMatchAfterBind(connection, bindDN, authType,
H A DAuthMethodConnectionCriteria.java44 * A connection criteria which matches connections authenticated using a
57 * Creates a new authentication method connection criteria using the
74 public boolean matches(ClientConnection connection) argument
76 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
111 public boolean willMatchAfterBind(ClientConnection connection, argument
H A DBindDNConnectionCriteria.java44 * A connection criteria which matches connections authenticated using a
51 * Creates a new bind DN connection criteria using the provided DN
56 * @return The new bind DN connection criteria.
68 * Creates a new bind DN connection criteria using the provided DN
73 * @return The new bind DN connection criteria.
109 public boolean matches(ClientConnection connection) argument
111 DN dn = connection.getAuthenticationInfo().getAuthenticationDN();
112 return willMatchAfterBind(connection, dn, null, false);
120 public boolean willMatchAfterBind(ClientConnection connection, argument
H A DConnectionCriteria.java40 * determine whether a client connection should be associated with a
47 * A connection criteria which does not match any connections.
56 public boolean matches(ClientConnection connection)
67 ClientConnection connection, DN bindDN,
76 * A connection criteria which matches all connections.
85 public boolean matches(ClientConnection connection)
96 ClientConnection connection, DN bindDN,
107 * Indicates whether or not the provided client connection matches
108 * this connection criteria.
110 * @param connection
115 matches(ClientConnection connection) argument
136 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
[all...]
H A DIPConnectionCriteria.java43 * A connection criteria which matches connections coming from a allowed
58 * Creates a new IP connection criteria using the provided allowed and
78 public boolean matches(ClientConnection connection) argument
80 InetAddress ipAddr = connection.getRemoteAddress();
102 public boolean willMatchAfterBind(ClientConnection connection, argument
105 return matches(connection);
H A DProtocolConnectionCriteria.java43 * A connection criteria which matches connections which use a permitted
55 * Creates a new protocol connection criteria using the provided
72 public boolean matches(ClientConnection connection) argument
75 connection.getConnectionHandler().getProtocol();
104 public boolean willMatchAfterBind(ClientConnection connection, argument
107 return matches(connection);
H A DSecurityConnectionCriteria.java38 * A connection criteria which matches connections which are secured
45 * A connection criteria which does not require a secured connection.
51 * A connection criteria which requires a secured connection.
56 // Indicates whether or not the connection must be secured.
62 * Creates a new security connection criteria.
65 * Indicates whether or not the connection must be secured.
77 public boolean matches(ClientConnection connection) argument
79 return willMatchAfterBind(null, null, null, connection
87 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/http/
H A DHTTPStatsProbe.java35 * written to the HTTP connection. We are using
64 public void onDataSentEvent(Connection connection, Buffer buffer) argument
71 public void onDataReceivedEvent(Connection connection, Buffer buffer) argument
/forgerock/opendj2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagementContext.java39 * An LDAP management connection context.
45 * connection.
47 * @param connection
48 * The LDAP connection.
51 public static ManagementContext createFromContext(LDAPConnection connection) { argument
52 Validator.ensureNotNull(connection);
53 return new LDAPManagementContext(connection, LDAPProfile.getInstance());
62 private LDAPManagementContext(LDAPConnection connection, argument
64 this.driver = new LDAPDriver(this, connection, profile);
/forgerock/opendj2/src/server/org/opends/server/core/networkgroups/
H A DANDConnectionCriteria.java41 * A connection criteria which matches connections if and only if all
43 * connection criteria will always match.
48 // The list of underlying connection criteria.
54 * Creates a new AND connection criteria using the provided
71 public boolean matches(ClientConnection connection) argument
75 if (!filter.matches(connection))
89 public boolean willMatchAfterBind(ClientConnection connection, argument
94 if (!filter.willMatchAfterBind(connection, bindDN, authType,
H A DAuthMethodConnectionCriteria.java43 * A connection criteria which matches connections authenticated using a
56 * Creates a new authentication method connection criteria using the
73 public boolean matches(ClientConnection connection) argument
75 AuthenticationInfo authInfo = connection.getAuthenticationInfo();
110 public boolean willMatchAfterBind(ClientConnection connection, argument
H A DBindDNConnectionCriteria.java43 * A connection criteria which matches connections authenticated using a
50 * Creates a new bind DN connection criteria using the provided DN
55 * @return The new bind DN connection criteria.
67 * Creates a new bind DN connection criteria using the provided DN
72 * @return The new bind DN connection criteria.
108 public boolean matches(ClientConnection connection) argument
110 DN dn = connection.getAuthenticationInfo().getAuthenticationDN();
111 return willMatchAfterBind(connection, dn, null, false);
119 public boolean willMatchAfterBind(ClientConnection connection, argument
H A DConnectionCriteria.java39 * determine whether a client connection should be associated with a
46 * A connection criteria which does not match any connections.
55 public boolean matches(ClientConnection connection)
66 ClientConnection connection, DN bindDN,
75 * A connection criteria which matches all connections.
84 public boolean matches(ClientConnection connection)
95 ClientConnection connection, DN bindDN,
106 * Indicates whether or not the provided client connection matches
107 * this connection criteria.
109 * @param connection
114 matches(ClientConnection connection) argument
135 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
[all...]

Completed in 108 milliseconds

1234567891011>>