Searched defs:port (Results 326 - 350 of 473) sorted by relevance

<<111213141516171819

/forgerock/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DReplicationServer.java301 // Wait on the replicationServer port.
361 // shutdown or changing the port number process.
410 final int port = Integer.parseInt(portString);
430 if (isLocalAddress(inetAddress) && (port == replicationPort))
470 * Establish a connection to the server with the address and port.
472 * @param remoteServerURL The address and port for the server, separated by a
479 String port = remoteServerURL.substring(separator + 1);
492 InetAddress.getByName(hostname), Integer.parseInt(port));
972 int port = configuration.getReplicationPort();
977 tmpSocket.bind(new InetSocketAddress(port));
1639 isLocalReplicationServerPort(int port) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/util/
H A DStaticUtils.java2683 * @param port TCP port number of the TCP address for which to
2692 InetAddress address, int port,
2709 // address spaces ie listening to the same port in both spaces
2723 clientSocket.connect(new InetSocketAddress(address, port));
2733 serverSocket.bind(new InetSocketAddress(address, port));
2691 isAddressInUse( InetAddress address, int port, boolean allowReuse) argument
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java114 * Returns <CODE>true</CODE> if the provided port is free and we can use it,
116 * @param port the port we are analyzing.
117 * @return <CODE>true</CODE> if the provided port is free and we can use it,
120 public static boolean canUseAsPort(int port) argument
122 return SetupUtils.canUseAsPort(port);
126 * Returns <CODE>true</CODE> if the provided port is a priviledged port,
128 * @param port the port w
132 isPriviledgedPort(int port) argument
[all...]
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java115 * Returns <CODE>true</CODE> if the provided port is free and we can use it,
117 * @param port the port we are analyzing.
118 * @return <CODE>true</CODE> if the provided port is free and we can use it,
121 public static boolean canUseAsPort(int port) argument
123 return SetupUtils.canUseAsPort(port);
127 * Returns <CODE>true</CODE> if the provided port is a priviledged port,
129 * @param port the port w
133 isPriviledgedPort(int port) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestCaseUtils.java158 * The name of the system property that specifies the ldap port.
160 * port number, otherwise a port is chosen randomly at test startup time.
166 * The name of the system property that specifies the admin port. Set this
167 * property when running the server if you want to use a given port number,
168 * otherwise a port is chosen randomly at test startup time.
221 * The LDAP port the server is bound to on start.
226 * The Administration port the server is bound to on start.
231 * The JMX port the server is bound to on start.
236 * The LDAPS port th
741 bindPort(int port) argument
[all...]
/forgerock/opendj-b2.6/tests/staf-tests/shared/python/
H A Dcommon.py270 self.port=''
282 def port(self,port): member in class:directory_server
283 return port
285 def adminport(self,port):
451 self.port=__entryMap['port']
463 return self.port
/forgerock/opendj2/src/server/org/opends/server/util/
H A DStaticUtils.java2661 * @param port TCP port number of the TCP address for which to
2670 InetAddress address, int port,
2687 // address spaces ie listening to the same port in both spaces
2701 clientSocket.connect(new InetSocketAddress(address, port));
2711 serverSocket.bind(new InetSocketAddress(address, port));
2669 isAddressInUse( InetAddress address, int port, boolean allowReuse) argument
/forgerock/opendj2/tests/staf-tests/shared/python/
H A Dcommon.py269 self.port=''
281 def port(self,port): member in class:directory_server
282 return port
284 def adminport(self,port):
450 self.port=__entryMap['port']
462 return self.port
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestCaseUtils.java119 * The name of the system property that specifies the ldap port.
121 * port number, otherwise a port is chosen randomly at test startup time.
127 * The name of the system property that specifies the admin port. Set this
128 * property when running the server if you want to use a given port number,
129 * otherwise a port is chosen randomly at test startup time.
189 * The LDAP port the server is bound to on start.
194 * The Administration port the server is bound to on start.
199 * The JMX port the server is bound to on start.
204 * The LDAPS port th
663 bindPort(int port) argument
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java115 * Returns <CODE>true</CODE> if the provided port is free and we can use it,
117 * @param port the port we are analyzing.
118 * @return <CODE>true</CODE> if the provided port is free and we can use it,
121 public static boolean canUseAsPort(int port) argument
123 return SetupUtils.canUseAsPort(port);
127 * Returns <CODE>true</CODE> if the provided port is a priviledged port,
129 * @param port the port w
133 isPriviledgedPort(int port) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DReplicationServer.java302 // Wait on the replicationServer port.
362 // shutdown or changing the port number process.
411 final int port = Integer.parseInt(portString);
431 if (isLocalAddress(inetAddress) && (port == replicationPort))
471 * Establish a connection to the server with the address and port.
473 * @param remoteServerURL The address and port for the server, separated by a
480 String port = remoteServerURL.substring(separator + 1);
493 InetAddress.getByName(hostname), Integer.parseInt(port));
978 int port = configuration.getReplicationPort();
983 tmpSocket.bind(new InetSocketAddress(port));
1617 isLocalReplicationServerPort(int port) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/util/
H A DStaticUtils.java2683 * @param port TCP port number of the TCP address for which to
2692 InetAddress address, int port,
2709 // address spaces ie listening to the same port in both spaces
2723 clientSocket.connect(new InetSocketAddress(address, port));
2733 serverSocket.bind(new InetSocketAddress(address, port));
2691 isAddressInUse( InetAddress address, int port, boolean allowReuse) argument
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestCaseUtils.java158 * The name of the system property that specifies the ldap port.
160 * port number, otherwise a port is chosen randomly at test startup time.
166 * The name of the system property that specifies the admin port. Set this
167 * property when running the server if you want to use a given port number,
168 * otherwise a port is chosen randomly at test startup time.
221 * The LDAP port the server is bound to on start.
226 * The Administration port the server is bound to on start.
231 * The JMX port the server is bound to on start.
236 * The LDAPS port th
741 bindPort(int port) argument
[all...]
/forgerock/opendj2.6.2/tests/staf-tests/shared/python/
H A Dcommon.py270 self.port=''
282 def port(self,port): member in class:directory_server
283 return port
285 def adminport(self,port):
451 self.port=__entryMap['port']
463 return self.port
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/python/
H A Dcommon.py270 self.port=''
282 def port(self,port): member in class:directory_server
283 return port
285 def adminport(self,port):
451 self.port=__entryMap['port']
463 return self.port
/forgerock/opendj2-hg/tests/staf-tests/shared/python/
H A Dcommon.py269 self.port=''
281 def port(self,port): member in class:directory_server
282 return port
284 def adminport(self,port):
450 self.port=__entryMap['port']
462 return self.port
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestCaseUtils.java119 * The name of the system property that specifies the ldap port.
121 * port number, otherwise a port is chosen randomly at test startup time.
127 * The name of the system property that specifies the admin port. Set this
128 * property when running the server if you want to use a given port number,
129 * otherwise a port is chosen randomly at test startup time.
189 * The LDAP port the server is bound to on start.
194 * The Administration port the server is bound to on start.
199 * The JMX port the server is bound to on start.
204 * The LDAPS port th
663 bindPort(int port) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/
H A DTestCaseUtils.java160 * The name of the system property that specifies the ldap port.
162 * port number, otherwise a port is chosen randomly at test startup time.
168 * The name of the system property that specifies the admin port. Set this
169 * property when running the server if you want to use a given port number,
170 * otherwise a port is chosen randomly at test startup time.
223 * The LDAP port the server is bound to on start.
228 * The Administration port the server is bound to on start.
233 * The JMX port the server is bound to on start.
238 * The LDAPS port th
830 bindPort(int port) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DReplicationServer.java301 // Wait on the replicationServer port.
361 // shutdown or changing the port number process.
410 final int port = Integer.parseInt(portString);
430 if (isLocalAddress(inetAddress) && (port == replicationPort))
470 * Establish a connection to the server with the address and port.
472 * @param remoteServerURL The address and port for the server, separated by a
479 String port = remoteServerURL.substring(separator + 1);
492 InetAddress.getByName(hostname), Integer.parseInt(port));
972 int port = configuration.getReplicationPort();
977 tmpSocket.bind(new InetSocketAddress(port));
1639 isLocalReplicationServerPort(int port) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/util/
H A DStaticUtils.java2760 * @param port TCP port number of the TCP address for which to
2769 InetAddress address, int port,
2786 // address spaces ie listening to the same port in both spaces
2800 clientSocket.connect(new InetSocketAddress(address, port));
2810 serverSocket.bind(new InetSocketAddress(address, port));
2768 isAddressInUse( InetAddress address, int port, boolean allowReuse) argument
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java114 * Returns <CODE>true</CODE> if the provided port is free and we can use it,
116 * @param port the port we are analyzing.
117 * @return <CODE>true</CODE> if the provided port is free and we can use it,
120 public static boolean canUseAsPort(int port) argument
122 return SetupUtils.canUseAsPort(port);
126 * Returns <CODE>true</CODE> if the provided port is a priviledged port,
128 * @param port the port w
132 isPriviledgedPort(int port) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/util/
H A DStaticUtils.java2661 * @param port TCP port number of the TCP address for which to
2670 InetAddress address, int port,
2687 // address spaces ie listening to the same port in both spaces
2701 clientSocket.connect(new InetSocketAddress(address, port));
2711 serverSocket.bind(new InetSocketAddress(address, port));
2669 isAddressInUse( InetAddress address, int port, boolean allowReuse) argument
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DUtils.java129 * Returns <CODE>true</CODE> if the provided port is free and we can use it,
131 * @param port the port we are analyzing.
132 * @return <CODE>true</CODE> if the provided port is free and we can use it,
135 public static boolean canUseAsPort(int port) argument
137 return SetupUtils.canUseAsPort(port);
141 * Returns <CODE>true</CODE> if the provided port is a priviledged port,
143 * @param port the port w
147 isPriviledgedPort(int port) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/
H A DAuthContext.java217 * host name, and port number,
280 * host name, and port number,
2345 String port,
2351 protocol, host, port, uri);
2354 protocol + "://" + host + ":" + port);
2342 getAuthServiceURL( String protocol, String host, String port, String uri ) argument
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/ldap/
H A DLDAPAuthUtils.java150 // contains host:port:min:max
225 * @param port Primary server port.
232 public LDAPAuthUtils(String host, int port, Set<String> secondaryServers, boolean isSecure, argument
234 this(Collections.singleton(host + ":" + port), secondaryServers, isSecure, bundle, baseDN, debug);
299 // host:port:min:max

Completed in 181 milliseconds

<<111213141516171819