Searched refs:isSecure (Results 1 - 25 of 274) sorted by relevance

1234567891011

/forgerock/opendj-b2.6/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteria.java79 return willMatchAfterBind(null, null, null, connection.isSecure());
88 DN bindDN, AuthenticationType authType, boolean isSecure)
92 return isSecure;
87 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
H A DConnectionCriteria.java68 AuthenticationType authType, boolean isSecure)
97 AuthenticationType authType, boolean isSecure)
130 * @param isSecure
137 AuthenticationType authType, boolean isSecure);
136 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
/forgerock/opendj2/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteria.java78 return willMatchAfterBind(null, null, null, connection.isSecure());
87 DN bindDN, AuthenticationType authType, boolean isSecure)
91 return isSecure;
86 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
H A DConnectionCriteria.java67 AuthenticationType authType, boolean isSecure)
96 AuthenticationType authType, boolean isSecure)
129 * @param isSecure
136 AuthenticationType authType, boolean isSecure);
135 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteria.java79 return willMatchAfterBind(null, null, null, connection.isSecure());
88 DN bindDN, AuthenticationType authType, boolean isSecure)
92 return isSecure;
87 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
H A DConnectionCriteria.java68 AuthenticationType authType, boolean isSecure)
97 AuthenticationType authType, boolean isSecure)
130 * @param isSecure
137 AuthenticationType authType, boolean isSecure);
136 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteria.java79 return willMatchAfterBind(null, null, null, connection.isSecure());
88 DN bindDN, AuthenticationType authType, boolean isSecure)
92 return isSecure;
87 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
H A DConnectionCriteria.java68 AuthenticationType authType, boolean isSecure)
97 AuthenticationType authType, boolean isSecure)
130 * @param isSecure
137 AuthenticationType authType, boolean isSecure);
136 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
/forgerock/opendj2-hg/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteria.java78 return willMatchAfterBind(null, null, null, connection.isSecure());
87 DN bindDN, AuthenticationType authType, boolean isSecure)
91 return isSecure;
86 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
H A DConnectionCriteria.java67 AuthenticationType authType, boolean isSecure)
96 AuthenticationType authType, boolean isSecure)
129 * @param isSecure
136 AuthenticationType authType, boolean isSecure);
135 willMatchAfterBind(ClientConnection connection, DN bindDN, AuthenticationType authType, boolean isSecure) argument
/forgerock/opendj-v3/opendj-server/src/main/java/org/forgerock/opendj/server/setup/model/
H A DReplicationConfiguration.java40 private boolean isSecure; field in class:ReplicationConfiguration
54 isSecure = false;
82 public boolean isSecure() { method in class:ReplicationConfiguration
83 return isSecure;
93 isSecure = secure;
/forgerock/opendj-b2.6/src/server/org/opends/server/extensions/
H A DConnectionSecurityProvider.java76 boolean isSecure(); method in interface:ConnectionSecurityProvider
/forgerock/opendj2/src/server/org/opends/server/extensions/
H A DConnectionSecurityProvider.java75 boolean isSecure(); method in interface:ConnectionSecurityProvider
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteriaTest.java87 * @param isSecure
97 public void testMatches(boolean isSecure, argument
102 new MockClientConnection(12345, isSecure, DN.nullDN(),
113 * @param isSecure
123 public void testWillMatchAfterBind(boolean isSecure, argument
132 DN.nullDN(), AuthenticationType.SIMPLE, isSecure),
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteriaTest.java86 * @param isSecure
96 public void testMatches(boolean isSecure, argument
101 new MockClientConnection(12345, isSecure, DN.nullDN(),
112 * @param isSecure
122 public void testWillMatchAfterBind(boolean isSecure, argument
131 DN.nullDN(), AuthenticationType.SIMPLE, isSecure),
H A DMockClientConnection.java48 private final boolean isSecure; field in class:MockClientConnection
56 * @param isSecure
65 public MockClientConnection(int clientPort, boolean isSecure, argument
69 this.isSecure = isSecure;
260 public boolean isSecure() method in class:MockClientConnection
262 return isSecure;
/forgerock/opendj2.6.2/src/server/org/opends/server/extensions/
H A DConnectionSecurityProvider.java76 boolean isSecure(); method in interface:ConnectionSecurityProvider
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteriaTest.java87 * @param isSecure
97 public void testMatches(boolean isSecure, argument
102 new MockClientConnection(12345, isSecure, DN.nullDN(),
113 * @param isSecure
123 public void testWillMatchAfterBind(boolean isSecure, argument
132 DN.nullDN(), AuthenticationType.SIMPLE, isSecure),
H A DMockClientConnection.java49 private final boolean isSecure; field in class:MockClientConnection
57 * @param isSecure
66 public MockClientConnection(int clientPort, boolean isSecure, argument
70 this.isSecure = isSecure;
261 public boolean isSecure() method in class:MockClientConnection
263 return isSecure;
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteriaTest.java86 * @param isSecure
96 public void testMatches(boolean isSecure, argument
101 new MockClientConnection(12345, isSecure, DN.nullDN(),
112 * @param isSecure
122 public void testWillMatchAfterBind(boolean isSecure, argument
131 DN.nullDN(), AuthenticationType.SIMPLE, isSecure),
H A DMockClientConnection.java48 private final boolean isSecure; field in class:MockClientConnection
56 * @param isSecure
65 public MockClientConnection(int clientPort, boolean isSecure, argument
69 this.isSecure = isSecure;
260 public boolean isSecure() method in class:MockClientConnection
262 return isSecure;
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/core/networkgroups/
H A DSecurityConnectionCriteriaTest.java87 * @param isSecure
97 public void testMatches(boolean isSecure, argument
102 new MockClientConnection(12345, isSecure, DN.nullDN(),
113 * @param isSecure
123 public void testWillMatchAfterBind(boolean isSecure, argument
132 DN.nullDN(), AuthenticationType.SIMPLE, isSecure),
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DConnectionSecurityProvider.java76 boolean isSecure(); method in interface:ConnectionSecurityProvider
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DConnectionSecurityProvider.java75 boolean isSecure(); method in interface:ConnectionSecurityProvider
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DConnectionSecurityProvider.java75 boolean isSecure(); method in interface:ConnectionSecurityProvider

Completed in 134 milliseconds

1234567891011