Searched defs:port (Results 301 - 325 of 473) sorted by relevance

<<111213141516171819

/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java71 /** The port of the replicationServer. */
121 // Find a free port for the replicationServer
256 private final int port; field in class:AssuredReplicationPluginTest.FakeReplicationServer
288 public FakeReplicationServer(byte groupId, int port, int serverId, boolean assured, argument
293 this.port = port;
305 public FakeReplicationServer(byte groupId, int port, int serverId, int safeDataLevel, argument
309 this.port = port;
349 listenSocket.bind(new InetSocketAddress(port));
[all...]
H A DTopologyViewTest.java338 fail("Enable to find port number in: " + serverStr);
374 + " Domain connected: " + connected + ", connection port: " + rdPort
1242 private String getHostPort(int port) argument
1244 return LOCAL_HOST_NAME + ":" + port;
/forgerock/opendj2-jel-hg/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyFactory.java1039 ERR_LDAP_PTA_CONNECTION_SEARCH_SIZE_LIMIT.get(host, port,
1046 ERR_LDAP_PTA_CONNECTION_SEARCH_FAILED.get(host, port,
1068 ERR_LDAP_PTA_CONNECTION_SEARCH_SIZE_LIMIT.get(host, port,
1078 ERR_LDAP_PTA_CONNECTION_SEARCH_NO_MATCHES.get(host, port,
1120 ERR_LDAP_PTA_CONNECTION_BIND_FAILED.get(host, port,
1176 ERR_LDAP_PTA_CONNECTION_DISCONNECTING.get(host, port,
1185 ERR_LDAP_PTA_CONNECTION_WRONG_RESPONSE.get(host, port,
1206 ERR_LDAP_PTA_CONNECTION_TIMEOUT.get(host, port,
1212 ERR_LDAP_PTA_CONNECTION_OTHER_ERROR.get(host, port,
1218 ERR_LDAP_PTA_CONNECTION_DECODE_ERROR.get(host, port,
1274 private final int port; field in class:LDAPPassThroughAuthenticationPolicyFactory.LDAPConnectionFactory
1291 LDAPConnectionFactory(final String host, final int port, final LDAPPassThroughAuthenticationPolicyCfg cfg) argument
1518 getLDAPConnectionFactory(String host, int port, LDAPPassThroughAuthenticationPolicyCfg cfg) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/cli/
H A DConsoleApplication.java842 * Interactively retrieves a port value from the console.
845 * The port prompt.
847 * The port default value.
848 * @return Returns the port.
850 * If the port could not be retrieved for some reason.
916 * Commodity method used to repeatidly ask the user to provide a port value.
921 * the default value of the port to be proposed to the user.
924 * @return the port value provided by the user.
928 int port = -1;
929 while (port
1094 createAdministrativeContext(String host, int port, boolean useSSL, boolean useStartTLS, String bindDn, String pwd, int connectTimeout, ApplicationTrustManager trustManager) argument
[all...]
H A DLDAPConnectionConsoleInteraction.java505 // Get the LDAP port.
1341 * Gets the port number name that should be used for connections based on
1344 * @return port number for connections
1351 * Sets the port number name that should be used for connections based on
1354 * @param portNumber port number for connections
1983 * @param port the port to connect to the server.
1989 public void initializeGlobalArguments(String hostName, int port, argument
1999 // resetConnectionArguments does not clear the values for the port
2001 if (port !
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyFactory.java1033 ERR_LDAP_PTA_CONNECTION_SEARCH_SIZE_LIMIT.get(host, port,
1040 ERR_LDAP_PTA_CONNECTION_SEARCH_FAILED.get(host, port,
1062 ERR_LDAP_PTA_CONNECTION_SEARCH_SIZE_LIMIT.get(host, port,
1072 ERR_LDAP_PTA_CONNECTION_SEARCH_NO_MATCHES.get(host, port,
1114 ERR_LDAP_PTA_CONNECTION_BIND_FAILED.get(host, port,
1170 ERR_LDAP_PTA_CONNECTION_DISCONNECTING.get(host, port,
1179 ERR_LDAP_PTA_CONNECTION_WRONG_RESPONSE.get(host, port,
1200 ERR_LDAP_PTA_CONNECTION_TIMEOUT.get(host, port,
1206 ERR_LDAP_PTA_CONNECTION_OTHER_ERROR.get(host, port,
1212 ERR_LDAP_PTA_CONNECTION_DECODE_ERROR.get(host, port,
1268 private final int port; field in class:LDAPPassThroughAuthenticationPolicyFactory.LDAPConnectionFactory
1285 LDAPConnectionFactory(final String host, final int port, final LDAPPassThroughAuthenticationPolicyCfg cfg) argument
1516 getLDAPConnectionFactory(String host, int port, LDAPPassThroughAuthenticationPolicyCfg cfg) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/
H A DReplicationServer.java224 // Wait on the replicationServer port.
283 // shutdown or changing the port number process.
373 * Establish a connection to the server with the address and port.
376 * The address and port for the server
864 int port = configuration.getReplicationPort();
869 tmpSocket.bind(new InetSocketAddress(port));
875 Message message = ERR_COULD_NOT_BIND_CHANGELOG.get(port, e.getMessage());
921 // changing the listen port requires to stop the listen thread
1184 * Retrieves the port used by this ReplicationServer.
1186 * @return The port use
1235 isLocalReplicationServerPort(int port) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/tools/
H A DInstallDS.java88 * <LI>Ask the user for the administration port and make sure it's available
90 * <LI>Ask the user for the LDAP port and make sure it's available</LI>
910 private void checkCanUsePort(int port, List<Message> errorMessages) argument
912 if (!SetupUtils.canUseAsPort(port))
914 errorMessages.add(getCannotBindErrorMessage(port));
918 private Message getCannotBindErrorMessage(int port) argument
920 if (SetupUtils.isPriviledgedPort(port))
922 return ERR_INSTALLDS_CANNOT_BIND_TO_PRIVILEGED_PORT.get(port);
924 return ERR_INSTALLDS_CANNOT_BIND_TO_PORT.get(port);
1090 * JMX port parameter
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/util/cli/
H A DConsoleApplication.java863 * Interactively retrieves a port value from the console.
866 * The port prompt.
868 * The port default value.
869 * @return Returns the port.
871 * If the port could not be retrieved for some reason.
937 * Commodity method used to repeatidly ask the user to provide a port value.
942 * the default value of the port to be proposed to the user.
945 * @return the port value provided by the user.
949 int port = -1;
950 while (port
1115 createAdministrativeContext(String host, int port, boolean useSSL, boolean useStartTLS, String bindDn, String pwd, int connectTimeout, ApplicationTrustManager trustManager) argument
[all...]
H A DLDAPConnectionConsoleInteraction.java504 // Get the LDAP port.
1340 * Gets the port number name that should be used for connections based on
1343 * @return port number for connections
1350 * Sets the port number name that should be used for connections based on
1353 * @param portNumber port number for connections
1982 * @param port the port to connect to the server.
1988 public void initializeGlobalArguments(String hostName, int port, argument
1998 // resetConnectionArguments does not clear the values for the port
2000 if (port !
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/naming/
H A DWebtopNaming.java215 * @param port port of the server instance
227 String port,
230 String serverid = getServerID(protocol, host, port, uri);
288 * @param port the service listening port
297 String host, String port, String uri) throws URLNotFoundException {
298 return (getServiceURL(service, protocol, host, port, uri, serverMode));
307 * validate the protocol, host and port of the server
327 * @param port th
224 isSiteEnabled( String protocol, String host, String port, String uri ) argument
296 getServiceURL(String service, String protocol, String host, String port, String uri) argument
336 getServiceURL( String service, String protocol, String host, String port, boolean validate ) argument
353 mapSiteToServer( String protocol, String host, String port, String uri ) argument
386 getServiceURL( String service, String protocol, String host, String port, String uri, boolean validate ) argument
614 getServerID( String protocol, String host, String port, String uri) argument
639 getServerID( String protocol, String host, String port, String uri, boolean updatetbl ) argument
844 getSiteID( String protocol, String host, String port, String uri ) argument
936 getSecondarySites( String protocol, String host, String port, String uri) argument
1180 validate( String protocol, String host, String port, String uri ) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/ums/
H A DDataLayer.java102 * _ldapPool may be implemented with a HashTable of (host,port) for mulitple
103 * pools of connections for mulitple (host,port) to DS servers instead of single
104 * host and port.
220 * @param port
221 * LDAP port
225 private DataLayer(String id, String pwd, String host, int port) argument
230 m_port = port;
247 int port = 389;
253 port = serverCfg.getPort();
258 m_instance = new DataLayer(pUser, pPwd, host, port);
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/admin/ads/
H A DServerDescriptor.java199 * on the information we have ("hostname":"replication port") and
202 * on the information we have ("hostname":"replication port") and
230 * Returns the replication port of this server and -1 if this is not a
232 * @return the replication port of this server and -1 if this is not a
246 * Returns whether the communication with the replication port on the server
248 * @return <CODE>true</CODE> if the communication with the replication port on
285 * port.
296 * port.
306 int port = getPort(enabledProp, portProp);
307 if (port !
622 getPort(List<?> enabled, List<?> port) argument
1426 getServerRepresentation(String hostName, int port) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/extensions/
H A DLDAPPassThroughAuthenticationPolicyFactory.java978 ERR_LDAP_PTA_CONNECTION_SEARCH_SIZE_LIMIT.get(host, port, cfg.dn(), baseDN, filter));
983 ERR_LDAP_PTA_CONNECTION_SEARCH_FAILED.get(host, port,
1003 ERR_LDAP_PTA_CONNECTION_SEARCH_SIZE_LIMIT.get(host, port,
1012 ERR_LDAP_PTA_CONNECTION_SEARCH_NO_MATCHES.get(host, port,
1051 ERR_LDAP_PTA_CONNECTION_BIND_FAILED.get(host, port,
1103 ERR_LDAP_PTA_CONNECTION_DISCONNECTING.get(host, port,
1111 ERR_LDAP_PTA_CONNECTION_WRONG_RESPONSE.get(host, port,
1131 ERR_LDAP_PTA_CONNECTION_TIMEOUT.get(host, port, cfg.dn()), e);
1136 ERR_LDAP_PTA_CONNECTION_OTHER_ERROR.get(host, port, cfg.dn(), e.getMessage()), e);
1141 ERR_LDAP_PTA_CONNECTION_DECODE_ERROR.get(host, port, cf
1192 private final int port; field in class:LDAPPassThroughAuthenticationPolicyFactory.LDAPConnectionFactory
1209 LDAPConnectionFactory(final String host, final int port, final LDAPPassThroughAuthenticationPolicyCfg cfg) argument
1390 getLDAPConnectionFactory(String host, int port, LDAPPassThroughAuthenticationPolicyCfg cfg) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DSAMLServiceManager.java93 * host:port(target) and its saml-aware-servlet URL & sourceid.
107 * @param port port number of the target site.
117 public SiteEntry(String host, int port, String sourceid, String samlUrl, argument
121 portnumber = port;
147 * Returns port of the target.
148 * @return int port of the target.
475 * Returns server port in string format.
476 * @return String server port.
748 // get my server host and port inf
[all...]
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/filter/
H A DAmFilter.java643 logWarning("AmFilter: invalid agent port: " + agentPort);
656 private void setAgentPort(int port) { argument
657 _agentPort = port;
659 logMessage("AmFilter: agent port set to: " + port);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/
H A DReplicationServer.java221 // Wait on the replicationServer port.
280 // shutdown or changing the port number process.
367 * Establish a connection to the server with the address and port.
370 * The address and port for the server
829 int port = configuration.getReplicationPort();
834 tmpSocket.bind(new InetSocketAddress(port));
840 LocalizableMessage message = ERR_COULD_NOT_BIND_CHANGELOG.get(port, e.getMessage());
881 // changing the listen port requires to stop the listen thread
1138 * Retrieves the port used by this ReplicationServer.
1140 * @return The port use
1189 isLocalReplicationServerPort(int port) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/cli/
H A DLDAPConnectionConsoleInteraction.java543 // Get the LDAP port.
1354 * Gets the port number name that should be used for connections based on this
1357 * @return port number for connections
1365 * Sets the port number name that should be used for connections based on this
1369 * port number for connections
1944 * @param port
1945 * the port to connect to the server.
1955 public void initializeGlobalArguments(String hostName, int port, argument
1965 // resetConnectionArguments does not clear the values for the port
1967 if (port !
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/
H A DReplicationTestCase.java205 int serverId, int windowSize, int port, int timeout) throws Exception
208 port, timeout, getGenerationId(baseDN));
213 int serverId, int windowSize, int port, int timeout,
216 DomainFakeCfg config = newFakeCfg(baseDN, serverId, port);
218 return openReplicationSession(config, port, timeout, generationId);
222 int port, int timeout, long generationId) throws Exception
227 connect(broker, port, timeout);
231 protected DomainFakeCfg newFakeCfg(final DN baseDN, int serverId, int port) argument
233 DomainFakeCfg fakeCfg = new DomainFakeCfg(baseDN, serverId, newTreeSet("localhost:" + port));
239 protected void connect(ReplicationBroker broker, int port, in argument
204 openReplicationSession(final DN baseDN, int serverId, int windowSize, int port, int timeout) argument
212 openReplicationSession(final DN baseDN, int serverId, int windowSize, int port, int timeout, long generationId) argument
221 openReplicationSession(ReplicationDomainCfg config, int port, int timeout, long generationId) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/replication/plugin/
H A DAssuredReplicationPluginTest.java107 /** The port of the replicationServer. */
278 private final int port; field in class:AssuredReplicationPluginTest.FakeReplicationServer
314 public FakeReplicationServer(byte groupId, int port, int serverId, boolean assured, argument
318 this.port = port;
330 public FakeReplicationServer(byte groupId, int port, int serverId, int safeDataLevel, argument
334 this.port = port;
368 listenSocket.bind(new InetSocketAddress(port));
371 fail("Fake replication server could not bind to port
[all...]
H A DTopologyViewTest.java303 + " Domain connected: " + connected + ", connection port: " + rdPort
1120 private String getHostPort(int port) argument
1122 return LOCAL_HOST_NAME + ":" + port;
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/naming/
H A DWebtopNaming.java219 * @param port port of the server instance
231 String port,
234 String serverid = getServerID(protocol, host, port, uri);
292 * @param port the service listening port
301 String host, String port, String uri) throws URLNotFoundException {
302 return (getServiceURL(service, protocol, host, port, uri, serverMode));
311 * validate the protocol, host and port of the server
331 * @param port th
228 isSiteEnabled( String protocol, String host, String port, String uri ) argument
300 getServiceURL(String service, String protocol, String host, String port, String uri) argument
340 getServiceURL( String service, String protocol, String host, String port, boolean validate ) argument
357 mapSiteToServer( String protocol, String host, String port, String uri ) argument
408 getServiceURL( String service, String protocol, String host, String port, String uri, boolean validate ) argument
465 expand(String url, String protocol, String host, String port, String uri, boolean validate) argument
690 getServerID( String protocol, String host, String port, String uri) argument
715 getServerID( String protocol, String host, String port, String uri, boolean updatetbl ) argument
920 getSiteID( String protocol, String host, String port, String uri ) argument
1022 getSecondarySites( String protocol, String host, String port, String uri) argument
1260 validate( String protocol, String host, String port, String uri ) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/ums/
H A DDataLayer.java102 * _ldapPool may be implemented with a HashTable of (host,port) for mulitple
103 * pools of connections for mulitple (host,port) to DS servers instead of single
104 * host and port.
220 * @param port
221 * LDAP port
225 private DataLayer(String id, String pwd, String host, int port) argument
230 m_port = port;
247 int port = 389;
253 port = serverCfg.getPort();
258 m_instance = new DataLayer(pUser, pPwd, host, port);
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DSAMLServiceManager.java93 * host:port(target) and its saml-aware-servlet URL & sourceid.
107 * @param port port number of the target site.
117 public SiteEntry(String host, int port, String sourceid, String samlUrl, argument
121 portnumber = port;
147 * Returns port of the target.
148 * @return int port of the target.
475 * Returns server port in string format.
476 * @return String server port.
748 // get my server host and port inf
[all...]
/forgerock/openam/openam-ldap-utils/src/main/java/org/forgerock/openam/ldap/
H A DLDAPUtils.java273 * <li><code>host:port</code> - The LDAP server has no preferred
275 * <li><code>host:port|serverid</code> - The LDAP server should be mainly
277 * <li><code>host:port|serverid|siteid</code> - The LDAP server should be
671 * <li>A hostname and port, in the format <code>[host]:[port]</code></li>
674 * A space-separated list of hostnames with port numbers in priority order, e.g.
680 * @param host The host/host-port string.
681 * @param defaultPort The port number to use for hosts that do not specify a port in the string.
717 private static ConnectionFactory createSingleHostConnectionFactory(String host, int port, argument
[all...]

Completed in 181 milliseconds

<<111213141516171819