Searched defs:port (Results 1 - 25 of 142) sorted by relevance

123456

/glassfish-3.1.2/web/web-embed/api/src/main/java/org/glassfish/embeddable/web/
H A DAjpListener.java63 * @param port the port of the listener
65 public AjpListener(String id, int port) { argument
66 super(id, port);
H A DHttpListener.java45 * HTTP Listener listens on a TCP port for incoming HTTP connection.
61 public HttpListener(String id, int port) { argument
62 super(id, port);
H A DHttpsListener.java67 public HttpsListener(String id, int port) { argument
68 super(id, port);
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/naming/
H A DClientNamingConfigurator.java59 public void setDefaultPort(String port); argument
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/grizzly/
H A DGrizzlyContainer.java54 public void bind(Port port); argument
/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/test/
H A DCmpRosterTestNG.java62 String port=System.getProperty("http.port"); field in class:CmpRosterTestNG
76 String testurl = "http://" + host + ":" + port + "/"+
/glassfish-3.1.2/tests/quicklook/wsit/jaxbosgi/src/test/
H A DJaxbOsgiTestNG.java57 String port = System.getProperty("http.port"); field in class:JaxbOsgiTestNG
63 String testurl = "http://" + host + ":" + port + "/" + strContextRoot + "/index.jsp";
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/net/
H A DDefaultServerSocketFactory.java88 * the host, and is bound to a the specified port. The socket is
92 * @param port the port to listen to
105 public ServerSocket createSocket (int port) argument
110 return (new ServerSocket(port));
117 * the host, is bound to a the specified port, and uses the
121 * @param port the port to listen to
135 public ServerSocket createSocket (int port, int backlog) argument
140 return (new ServerSocket(port, backlo
166 createSocket(int port, int backlog, InetAddress ifAddress) argument
[all...]
H A DServerSocketFactory.java90 * the host, and is bound to a the specified port. The socket is
94 * @param port the port to listen to
107 public ServerSocket createSocket (int port) argument
115 * the host, is bound to a the specified port, and uses the
119 * @param port the port to listen to
133 public ServerSocket createSocket (int port, int backlog) argument
141 * interface on the local host, is bound to a the specified port,
145 * @param port th
160 createSocket(int port, int backlog, InetAddress ifAddress) argument
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/container/
H A DRequestDispatcher.java96 * Registers a new endpoint for the given context root at the given port
101 int port,
99 registerEndpoint(String contextRoot, InetAddress address, int port, Collection<String> vsServers, Adapter endpointAdapter, ApplicationContainer container) argument
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DClientNamingConfiguratorImpl.java76 public void setDefaultPort(String port) { argument
77 SerialInitContextFactory.setDefaultPort(port);
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DEmbeddedContainer.java59 * Binds a port using a specific protocol to this container.
60 * @param port the port instance to bind
61 * @param protocol the protocol the port should be used for, can
62 * be null and the container can use the port for any protocol(s)
65 public void bind(Port port, String protocol); argument
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/admin/
H A DEmbeddedAdminContainer.java66 * the passed port.
68 * @param port an initialized port
70 public void bind(Port port); argument
/glassfish-3.1.2/common/mbeanserver/src/main/java/org/glassfish/admin/mbeanserver/
H A DJMXMPConnectorStarter.java67 final int port,
74 super(mbeanServer, address, port, authRealmName, securityEnabled, habitat, bootListener, sslConfig);
88 int port = mPort;
94 mConnectorServer = startJMXMPConnectorServer(port);
105 if (port < 1000)
107 port += 1000; // in case it's a permissions thing
111 port = port + 1;
119 private JMXConnectorServer startJMXMPConnectorServer(final int port) argument
131 final JMXServiceURL serviceURL = new JMXServiceURL("service:jmx:" + JMXMP + "://" +hostname() + ":" + port);
64 JMXMPConnectorStarter( final MBeanServer mbeanServer, final String address, final int port, final String authRealmName, final boolean securityEnabled, final Habitat habitat, final BootAMXListener bootListener, final Ssl sslConfig) argument
[all...]
/glassfish-3.1.2/core/kernel/src/main/java/org/glassfish/kernel/embedded/
H A DEmbeddedAdminCtrImpl.java78 public void bind(Port port, String protocol) { argument
115 public void bind(Port port) { argument
H A DPortsImpl.java86 PortImpl port = habitat.getComponent(PortImpl.class);
87 port.setPortNumber(portNumber);
88 ports.put(portNumber, port);
89 return port; }
95 public void remove(Port port) { argument
96 ports.remove(port.getPortNumber());
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DVirtualServerInfo.java60 * Holds value of property port.
62 private int port; field in class:VirtualServerInfo
70 public VirtualServerInfo(String protocol, String host, int port) { argument
73 this.port = port;
85 * Getter for property port.
86 * @return value of property port.
89 return this.port;
104 return new URL(protocol, host, port, "");
/glassfish-3.1.2/tests/community/jdbc/jdbcusertx/src/test/
H A DJdbcUserTxTestNG.java66 String port=System.getProperty("http.port"); field in class:JdbcUserTxTestNG
80 String testurl = "http://" + host + ":" + port + "/"+
121 String testurl = "http://" + host + ":" + port + "/"+
/glassfish-3.1.2/tests/community/web/helloworld/src/test/
H A DHelloJSPTestNG.java66 String port=System.getProperty("http.port"); field in class:HelloJSPTestNG
75 //@Parameters({ "host", "port", "contextroot" })
77 //public void webtest(String host, String port, String contextroot) throws Exception{
83 String testurl = "http://" + host + ":" + port + "/"+ strContextRoot + "/hello.jsp";
122 String testurl = "http://" + host + ":" + port;
155 String testurl = "http://" + host + ":" + port + "/"+ strContextRoot + "/first.html";
195 String testurl = "http://" + host + ":" + port + "/"+ strContextRoot + "/simpleservlet";
/glassfish-3.1.2/tests/community/web/jsfinjection/src/test/
H A DJSFInjectionTestNG.java66 String port=System.getProperty("http.port"); field in class:JSFInjectionTestNG
75 //@Parameters({ "host", "port", "contextroot" })
84 String testUrl = "http://" + host + ":" + port + "/"+ strContextRoot + "/jsfHello.jsf";
/glassfish-3.1.2/tests/embedded/maven-plugin/applicationDispatcher/src/test/java/org/glassfish/tests/applicationDispatcher/
H A DWebTest.java73 private static void goGet(String host, int port, argument
/glassfish-3.1.2/tests/embedded/maven-plugin/dirListing/src/test/java/org/glassfish/tests/dirListing/
H A DWebTest.java73 private static void goGet(String host, int port, argument
/glassfish-3.1.2/tests/embedded/maven-plugin/filterURIMapping/src/test/java/org/glassfish/tests/filterURIMapping/
H A DWebTest.java73 private static void goGet(String host, int port, argument
/glassfish-3.1.2/tests/embedded/maven-plugin/queryString/src/test/java/org/glassfish/tests/queryString/
H A DWebTest.java73 private static void goGet(String host, int port, argument
/glassfish-3.1.2/tests/embedded/maven-plugin/secureWebApp/src/test/java/org/glassfish/tests/embedded/securewebapp/
H A DSecureWebAppTest.java75 private static void goGet(String host, int port, argument

Completed in 2950 milliseconds

123456