Searched defs:connection (Results 51 - 75 of 361) sorted by relevance

1234567891011>>

/forgerock/opendj2/src/server/org/opends/server/core/networkgroups/
H A DIPConnectionCriteria.java42 * A connection criteria which matches connections coming from a allowed
57 * Creates a new IP connection criteria using the provided allowed and
77 public boolean matches(ClientConnection connection) argument
79 InetAddress ipAddr = connection.getRemoteAddress();
101 public boolean willMatchAfterBind(ClientConnection connection, argument
104 return matches(connection);
H A DProtocolConnectionCriteria.java42 * A connection criteria which matches connections which use a permitted
54 * Creates a new protocol connection criteria using the provided
71 public boolean matches(ClientConnection connection) argument
74 connection.getConnectionHandler().getProtocol();
103 public boolean willMatchAfterBind(ClientConnection connection, argument
106 return matches(connection);
H A DSecurityConnectionCriteria.java37 * A connection criteria which matches connections which are secured
44 * A connection criteria which does not require a secured connection.
50 * A connection criteria which requires a secured connection.
55 // Indicates whether or not the connection must be secured.
61 * Creates a new security connection criteria.
64 * Indicates whether or not the connection must be secured.
76 public boolean matches(ClientConnection connection) argument
78 return willMatchAfterBind(null, null, null, connection
86 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/http/
H A DHTTPStatsProbe.java34 * written to the HTTP connection. We are using
63 public void onDataSentEvent(Connection connection, Buffer buffer) argument
70 public void onDataReceivedEvent(Connection connection, Buffer buffer) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagementContext.java40 * An LDAP management connection context.
46 * connection.
48 * @param connection
49 * The LDAP connection.
52 public static ManagementContext createFromContext(LDAPConnection connection) { argument
53 Validator.ensureNotNull(connection);
54 return new LDAPManagementContext(connection, LDAPProfile.getInstance());
63 private LDAPManagementContext(LDAPConnection connection, argument
65 this.driver = new LDAPDriver(this, connection, profile);
/forgerock/opendj2/src/dsml/org/opends/dsml/protocol/
H A DDSMLExtendedOperation.java52 private LDAPConnection connection; field in class:DSMLExtendedOperation
56 * Create an instance with the specified LDAP connection.
58 * @param connection The LDAP connection to send the request on.
62 public DSMLExtendedOperation(LDAPConnection connection, argument
65 this.connection = connection;
120 connection.getLDAPWriter().writeMessage(msg);
123 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/opendj-b2.6/src/dsml/org/opends/dsml/protocol/
H A DDSMLExtendedOperation.java53 private LDAPConnection connection; field in class:DSMLExtendedOperation
57 * Create an instance with the specified LDAP connection.
59 * @param connection The LDAP connection to send the request on.
63 public DSMLExtendedOperation(LDAPConnection connection, argument
66 this.connection = connection;
121 connection.getLDAPWriter().writeMessage(msg);
124 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/opendj2.6.2/src/server/org/opends/server/admin/client/ldap/
H A DLDAPManagementContext.java40 * An LDAP management connection context.
46 * connection.
48 * @param connection
49 * The LDAP connection.
52 public static ManagementContext createFromContext(LDAPConnection connection) { argument
53 Validator.ensureNotNull(connection);
54 return new LDAPManagementContext(connection, LDAPProfile.getInstance());
63 private LDAPManagementContext(LDAPConnection connection, argument
65 this.driver = new LDAPDriver(this, connection, profile);
/forgerock/opendj2.6.2/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/opendj2.6.2/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.6.2/src/dsml/org/opends/dsml/protocol/
H A DDSMLExtendedOperation.java53 private LDAPConnection connection; field in class:DSMLExtendedOperation
57 * Create an instance with the specified LDAP connection.
59 * @param connection The LDAP connection to send the request on.
63 public DSMLExtendedOperation(LDAPConnection connection, argument
66 this.connection = connection;
121 connection.getLDAPWriter().writeMessage(msg);
124 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/opendj2-hg/src/dsml/org/opends/dsml/protocol/
H A DDSMLExtendedOperation.java52 private LDAPConnection connection; field in class:DSMLExtendedOperation
56 * Create an instance with the specified LDAP connection.
58 * @param connection The LDAP connection to send the request on.
62 public DSMLExtendedOperation(LDAPConnection connection, argument
65 this.connection = connection;
120 connection.getLDAPWriter().writeMessage(msg);
123 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/opendj2-jel-hg/src/dsml/org/opends/dsml/protocol/
H A DDSMLExtendedOperation.java53 private LDAPConnection connection; field in class:DSMLExtendedOperation
57 * Create an instance with the specified LDAP connection.
59 * @param connection The LDAP connection to send the request on.
63 public DSMLExtendedOperation(LDAPConnection connection, argument
66 this.connection = connection;
121 connection.getLDAPWriter().writeMessage(msg);
124 LDAPMessage responseMessage = connection.getLDAPReader().readMessage();
/forgerock/opendj2-jel-hg/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);

Completed in 101 milliseconds

1234567891011>>