Searched defs:port (Results 51 - 75 of 473) sorted by relevance

1234567891011>>

/forgerock/openam/openam-radius/openam-radius-common/src/main/java/org/forgerock/openam/radius/common/packet/
H A DLoginTCPPortAttribute.java46 * The TCP port with which the user is to be connected, when the Login-Service Attribute is also present.
48 private int port = 0; field in class:LoginTCPPortAttribute
58 port = OctetUtils.toIntVal(octets);
62 * Constructs a new instance from the TCP port with which the user is to be connected, when the Login-Service
65 * @param port The TCP port with which the user is to be connected.
67 public LoginTCPPortAttribute(int port) { argument
68 super(OctetUtils.toOctets(AttributeType.LOGIN_TCP_PORT, port));
69 this.port = port;
[all...]
H A DNASPortAttribute.java45 * The physical port number of the NAS which is authenticating the user.
47 private int port = 0; field in class:NASPortAttribute
57 port = OctetUtils.toIntVal(octets);
61 * Constructs a new instance from the physical port number of the NAS.
63 * @param port The port number.
65 public NASPortAttribute(int port) { argument
66 super(OctetUtils.toOctets(AttributeType.NAS_PORT, port));
67 this.port = port;
[all...]
H A DPortLimitAttribute.java47 private int port = 0; field in class:PortLimitAttribute
57 port = OctetUtils.toIntVal(octets);
63 * @param port The maximum number of ports to be provided to the user by the NAS.
65 public PortLimitAttribute(int port) { argument
66 super(OctetUtils.toOctets(AttributeType.PORT_LIMIT, port));
67 this.port = port;
76 return port;
86 return new StringBuilder().append(port).toString();
/forgerock/openam/openam-authentication/openam-auth-radius/src/main/java/com/sun/identity/authentication/modules/radius/
H A DRADIUSServer.java37 * The remote radius port.
39 private int port; field in class:RADIUSServer
44 * @param port the remote port.
46 public RADIUSServer(String host, int port) { argument
48 this.port = port;
60 * Returns the port.
61 * @return the port.
64 return port;
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/util/
H A DIPSServerSocket.java42 public IPSServerSocket(int port) throws IOException { argument
43 super(port);
46 public IPSServerSocket(int port, int backlog) throws IOException { argument
47 super(port, backlog);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionServiceURLService.java75 * @param port Session Server port.
80 public URL getSessionServiceURL(String protocol, String server, String port, String uri) argument
82 String key = protocol + "://" + server + ":" + port + uri;
87 server, port, uri);
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java110 * @param port
111 * the port number the socket listens to
118 public ServerSocket createServerSocket(int port) throws IOException argument
120 return new ServerSocket(port, 0, InetAddress.getByName("0.0.0.0"))
128 TRACER.debugVerbose("host/port: %s/%d",
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/installer/
H A DAuthenticationData.java40 private int port; field in class:AuthenticationData
49 * Sets the server LDAP port.
50 * @param port the server LDAP port.
52 public void setPort(int port) argument
54 this.port = port;
58 * Returns the server LDAP port.
59 * @return the server LDAP port.
63 return port;
[all...]
/forgerock/opendj2/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java109 * @param port
110 * the port number the socket listens to
117 public ServerSocket createServerSocket(int port) throws IOException argument
119 return new ServerSocket(port, 0, InetAddress.getByName("0.0.0.0"))
127 TRACER.debugVerbose("host/port: %s/%d",
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/installer/
H A DAuthenticationData.java41 private int port; field in class:AuthenticationData
50 * Sets the server LDAP port.
51 * @param port the server LDAP port.
53 public void setPort(int port) argument
55 this.port = port;
59 * Returns the server LDAP port.
60 * @return the server LDAP port.
64 return port;
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/snmp/
H A DSNMPConnectionManager.java117 * Gets the Snmp port on which the Connection Handler is listening
129 * Gets the Snmp trap port on which the Connection Handler is
144 * @param port
147 protected SnmpUsmPeer getSnmpV3Peer(int port) argument
158 return new SnmpUsmPeer(engine, host, port);
171 * @param port
174 protected SnmpPeer getSnmpV2Peer(int port) argument
182 return new SnmpPeer(host, port);
236 * Enable SNMP with the port chosen in TestCaseUtils.
244 // Get a free port
[all...]
/forgerock/opendj-b2.6/tests/staf-tests/shared/java/snmp/
H A DSNMPSet.java57 * @param args SNMP agent version + SNMP agent host + SNMP agent port
71 " -p <port>" +
93 port = new Integer(val).intValue();
175 final SnmpPeer agent = new SnmpPeer(remoteHost, port);
234 final SnmpUsmPeer agentV3 = new SnmpUsmPeer(engine, remoteHost, port);
343 "\" at port \"" + port + "\".");
513 int port = 0; field in class:SNMPSet
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/snmp/
H A DSNMPConnectionManager.java116 * Gets the Snmp port on which the Connection Handler is listening
128 * Gets the Snmp trap port on which the Connection Handler is
143 * @param port
146 protected SnmpUsmPeer getSnmpV3Peer(int port) argument
157 return new SnmpUsmPeer(engine, host, port);
170 * @param port
173 protected SnmpPeer getSnmpV2Peer(int port) argument
181 return new SnmpPeer(host, port);
235 * Enable SNMP with the port chosen in TestCaseUtils.
251 "ds-cfg-listen-port", Strin
[all...]
/forgerock/opendj2/tests/staf-tests/shared/java/snmp/
H A DSNMPSet.java56 * @param args SNMP agent version + SNMP agent host + SNMP agent port
70 " -p <port>" +
92 port = new Integer(val).intValue();
174 final SnmpPeer agent = new SnmpPeer(remoteHost, port);
233 final SnmpUsmPeer agentV3 = new SnmpUsmPeer(engine, remoteHost, port);
342 "\" at port \"" + port + "\".");
512 int port = 0; field in class:SNMPSet
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/installer/
H A DAuthenticationData.java41 private int port; field in class:AuthenticationData
50 * Sets the server LDAP port.
51 * @param port the server LDAP port.
53 public void setPort(int port) argument
55 this.port = port;
59 * Returns the server LDAP port.
60 * @return the server LDAP port.
64 return port;
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java110 * @param port
111 * the port number the socket listens to
118 public ServerSocket createServerSocket(int port) throws IOException argument
120 return new ServerSocket(port, 0, InetAddress.getByName("0.0.0.0"))
128 TRACER.debugVerbose("host/port: %s/%d",
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/snmp/
H A DSNMPConnectionManager.java117 * Gets the Snmp port on which the Connection Handler is listening
129 * Gets the Snmp trap port on which the Connection Handler is
144 * @param port
147 protected SnmpUsmPeer getSnmpV3Peer(int port) argument
158 return new SnmpUsmPeer(engine, host, port);
171 * @param port
174 protected SnmpPeer getSnmpV2Peer(int port) argument
182 return new SnmpPeer(host, port);
236 * Enable SNMP with the port chosen in TestCaseUtils.
244 // Get a free port
[all...]
/forgerock/opendj2.6.2/tests/staf-tests/shared/java/snmp/
H A DSNMPSet.java57 * @param args SNMP agent version + SNMP agent host + SNMP agent port
71 " -p <port>" +
93 port = new Integer(val).intValue();
175 final SnmpPeer agent = new SnmpPeer(remoteHost, port);
234 final SnmpUsmPeer agentV3 = new SnmpUsmPeer(engine, remoteHost, port);
343 "\" at port \"" + port + "\".");
513 int port = 0; field in class:SNMPSet
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/snmp/
H A DSNMPConnectionManager.java116 * Gets the Snmp port on which the Connection Handler is listening
128 * Gets the Snmp trap port on which the Connection Handler is
143 * @param port
146 protected SnmpUsmPeer getSnmpV3Peer(int port) argument
157 return new SnmpUsmPeer(engine, host, port);
170 * @param port
173 protected SnmpPeer getSnmpV2Peer(int port) argument
181 return new SnmpPeer(host, port);
235 * Enable SNMP with the port chosen in TestCaseUtils.
251 "ds-cfg-listen-port", Strin
[all...]
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/java/snmp/
H A DSNMPSet.java57 * @param args SNMP agent version + SNMP agent host + SNMP agent port
71 " -p <port>" +
93 port = new Integer(val).intValue();
175 final SnmpPeer agent = new SnmpPeer(remoteHost, port);
234 final SnmpUsmPeer agentV3 = new SnmpUsmPeer(engine, remoteHost, port);
343 "\" at port \"" + port + "\".");
513 int port = 0; field in class:SNMPSet
/forgerock/opendj2-hg/tests/staf-tests/shared/java/snmp/
H A DSNMPSet.java56 * @param args SNMP agent version + SNMP agent host + SNMP agent port
70 " -p <port>" +
92 port = new Integer(val).intValue();
174 final SnmpPeer agent = new SnmpPeer(remoteHost, port);
233 final SnmpUsmPeer agentV3 = new SnmpUsmPeer(engine, remoteHost, port);
342 "\" at port \"" + port + "\".");
512 int port = 0; field in class:SNMPSet
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/snmp/
H A DSNMPConnectionManager.java117 * Gets the Snmp port on which the Connection Handler is listening
129 * Gets the Snmp trap port on which the Connection Handler is
144 * @param port
147 protected SnmpUsmPeer getSnmpV3Peer(int port) argument
158 return new SnmpUsmPeer(engine, host, port);
171 * @param port
174 protected SnmpPeer getSnmpV2Peer(int port) argument
182 return new SnmpPeer(host, port);
236 * Enable SNMP with the port chosen in TestCaseUtils.
244 // Get a free port
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java110 * @param port
111 * the port number the socket listens to
118 public ServerSocket createServerSocket(int port) throws IOException argument
120 return new ServerSocket(port, 0, InetAddress.getByName("0.0.0.0"))
128 TRACER.debugVerbose("host/port: %s/%d",
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/installer/
H A DAuthenticationData.java40 private int port; field in class:AuthenticationData
49 * Sets the server LDAP port.
50 * @param port the server LDAP port.
52 public void setPort(int port) argument
54 this.port = port;
58 * Returns the server LDAP port.
59 * @return the server LDAP port.
63 return port;
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java109 * @param port
110 * the port number the socket listens to
117 public ServerSocket createServerSocket(int port) throws IOException argument
119 return new ServerSocket(port, 0, InetAddress.getByName("0.0.0.0"))
127 TRACER.debugVerbose("host/port: %s/%d",

Completed in 113 milliseconds

1234567891011>>