Searched refs:host (Results 1 - 25 of 168) sorted by relevance

1234567

/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/https/
H A DSunOneBasicHostNameVerifier.java63 * whether the host name with which instance of this object was created is the
70 private final String host; field in class:SunOneBasicHostNameVerifier
72 public SunOneBasicHostNameVerifier(final String host) { argument
73 if (host == null)
75 this.host = host;
80 if (host.equals(hostName))
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DHostAndPort.java46 * Represents a host and a port in a convenient package that also
50 private final String host; field in class:HostAndPort
57 * @param host the host name
59 * @param secure does this host require a secure (SSL) connection?
61 public HostAndPort(String host, int port, boolean secure) { argument
62 this.host = host;
68 this(rhs.host, rhs.port, rhs.secure);
71 public HostAndPort(String host, in argument
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/appserv/management/client/prefs/
H A DLoginInfo.java45 * is specific to an admin host and admin port. Thus, with this scheme, there can be
46 * at the most one LoginInfo for an operating system user of Appserver, for a given admin host
51 private String host; field in class:LoginInfo
58 * The host, user and password may not be null.
60 * @param host String representing host
66 public LoginInfo(final String host, final int port, final String user, final String password) { argument
67 if (host == null || port < 0 || user == null || password == null)
69 init(host, port, user, password);
72 return ( host );
98 init(final String host, final int port, final String user, final String password) argument
[all...]
H A DLoginInfoStore.java48 * <li> The store can contain at the most one LoginInfo for a host and port combination </li>
57 * Returns a {@link LoginInfo} corresponding to the given host and port, from this store.
58 * The host may not be null. For a given host and port, there can be at most
60 * @param host a non null String representing host name
64 * @throws IllegalArgumentException if the parameter host is null
66 public LoginInfo read(final String host, final int port) throws StoreException; argument
69 * Removes the {@link LoginInfo} corresponding to the given host and port, from this store.
70 * The host ma
79 remove(final String host, final int port) argument
112 exists(final String host, final int port) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DVirtualServerInfo.java55 * Holds value of property host.
57 private String host; field in class:VirtualServerInfo
70 public VirtualServerInfo(String protocol, String host, int port) { argument
72 this.host = host;
81 return this.host;
104 return new URL(protocol, host, port, "");
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardEngineValve.java137 Host host = preInvoke(request, response);
138 if (host == null) {
142 if (host.getPipeline().hasNonBasicValves() ||
143 host.hasCustomPipeline()) {
145 host.getPipeline().invoke(request, response);
148 host.getPipeline().getBasic().invoke(request, response);
163 Host host = preInvoke(request, response);
164 if (host == null) {
168 if (host.getPipeline().hasNonBasicValves() ||
169 host
[all...]
H A DStandardHostDeployer.java101 * @param host The StandardHost we are associated with
103 public StandardHostDeployer(StandardHost host) { argument
106 this.host = host;
133 protected StandardHost host = null; field in class:StandardHostDeployer
170 return host;
173 public void setHost(Host host) { argument
174 this.host = (StandardHost)host;
182 return (host
[all...]
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/io/
H A DWindowsRemoteFileSystem.java54 private final String host; field in class:WindowsRemoteFileSystem
58 host = getIP(cr.getHost());
59 authorization = new NtlmPasswordAuthentication(host, cr.getUser(), cr.getPassword());
62 host = getIP(hostname);
67 host = getIP(hostname);
68 authorization = new NtlmPasswordAuthentication(host, username, password);
72 * @return the host
75 return host;
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/process/
H A DWindowsCredentials.java50 private final String host; field in class:WindowsCredentials
57 * @param host - IP address ("1.2.3.4" format) or name of the remote machine
62 public WindowsCredentials(String host, String domain, String user, String password) { argument
63 this.host = host;
68 if(!ok(host) || !ok(domain) || !ok(user) || !ok(password))
73 return host;
/glassfish-3.1.2/web/admin/src/main/java/org/glassfish/web/admin/monitor/
H A DVirtualServerInfoStatsProvider.java60 "The host (alias) names of the virtual server";
68 private VirtualServer host; field in class:VirtualServerInfoStatsProvider
82 public VirtualServerInfoStatsProvider(VirtualServer host) { argument
83 this.host = host;
89 state.setCurrent(host.getState());
96 hosts.setCurrent(host.getHosts());
103 id.setCurrent(host.getId());
110 mode.setCurrent(host.getState().equals("on") ? "active" : "unknown");
/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/system/
H A DMQUrl.java56 private String host = null; field in class:MQUrl
73 * Sets the host name of the Url.
75 * @param host Host Name of the Url.
77 public void setHost(String host) { argument
78 this.host = host;
112 * i.e> scheme://host:port/service
118 if ( host.equals("")) {
123 return scheme + "://" + host;
127 return scheme + "://" + host
[all...]
H A DJmsHostWrapper.java73 * Gets the value of the host property.
78 private String host; field in class:JmsHostWrapper
80 return host;
84 * Sets the value of the host property.
92 host = value;
198 JmsHost host = (JmsHost)proxy;
200 clone.setHost(host.getHost());
201 clone.setPort(host.getPort());
202 clone.setName(host.getName());
203 clone.setAdminPassword(host
[all...]
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DJMXConnectorConfig.java45 private String host=null; field in class:JMXConnectorConfig
56 public JMXConnectorConfig(String host, String port, argument
59 this.host=host;
68 return host;
H A DHttpConnectorAddress.java62 private String host; field in class:HttpConnectorAddress
80 public HttpConnectorAddress(String host, int port) { argument
81 this(host, port, false);
85 * construct an address which indicates the host, port and
87 * @param host a host address
92 public HttpConnectorAddress(String host, int port, boolean secure) { argument
93 this(host, port, secure, null);
96 public HttpConnectorAddress(String host, int port, boolean secure, String path) { argument
97 this(host, por
100 HttpConnectorAddress(String host, int port, SSLSocketFactory sslSocketFactory) argument
104 HttpConnectorAddress(String host, int port, boolean secure, String path, SSLSocketFactory sslSocketFactory) argument
137 configureSSL(final HttpsURLConnection httpsCnx, String host) argument
195 setHost(String host) argument
316 private final String host; field in class:HttpConnectorAddress.BasicHostnameVerifier
317 BasicHostnameVerifier(String host) argument
[all...]
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/
H A DInstallNodeSshCommand.java139 for (String host : hosts) {
140 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpassword, getSshKeyFile(), sshkeypassphrase, logger);
149 if (sshPasswords.containsKey(host))
150 sshpass = String.valueOf(sshPasswords.get(host));
152 sshpass = getSSHPassword(host);
155 sshLauncher.init(getRemoteUser(), host, getRemotePort(), sshpass, getSshKeyFile(), sshkeypassphrase, logger);
169 logger.info(Strings.get("mkdir.failed", sshInstallDir, host));
187 + " to " + host + ":" + sshInstallDir);
191 logger.finer("Copied " + zip + " to " + host + ":" + sshInstallDir);
194 logger.info(Strings.get("cannot.copy.zip.file", zip, host));
307 checkIfAlreadyInstalled(String host, String sshInstallDir) argument
[all...]
H A DUninstallNodeDcomCommand.java72 for (String host : hosts) {
73 if (NetUtils.isThisHostLocal(host))
74 throw new CommandException(Strings.get("install.node.nolocal", host));
95 for (String host : hosts) {
97 String pw = getWindowsPassword(host);
98 WindowsRemoteFileSystem wrfs = new WindowsRemoteFileSystem(host, getRemoteUser(), pw);
H A DInstallNodeDcomCommand.java80 for (String host : hosts) {
81 if (NetUtils.isThisHostLocal(host))
82 throw new CommandException(Strings.get("install.node.nolocal", host));
86 // every host is assumed to be in the same user-secified domain -- OR --
87 // each host is its own domain.
135 for (String host : hosts) {
136 String remotePassword = getWindowsPassword(host);
137 final String domain = (!ok(windowsDomain)) ? host : windowsDomain;
138 WindowsCredentials creds = new WindowsCredentials(host, domain, user, remotePassword);
139 credentials.add(new HostAndCredentials(host, cred
209 getCredentials(String host) argument
222 private final String host; field in class:InstallNodeDcomCommand.HostAndCredentials
225 HostAndCredentials(String host, WindowsCredentials creds) argument
[all...]
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/comm/
H A DHostAndPort.java46 /** Represents a host and a port in a convenient package that also
61 public HostAndPort(String host, int port, boolean secure){ argument
62 this.mHost = host;
71 public HostAndPort( String host, int port ) { argument
72 this(host, port, false);
94 Construct a new HostAndPort from a string of the form "host:port"
96 @param str string of the form "host:port"
H A DHttpConnectorAddress.java65 * the client to set the host, port, security property and
80 private String host; field in class:HttpConnectorAddress
101 public HttpConnectorAddress(String host, int port){ argument
102 this(host, port, false);
105 * construct an address which indicates the host, port and
107 * @param host a host address
112 public HttpConnectorAddress(String host, int port, boolean secure){ argument
115 this.host = host;
124 HttpConnectorAddress(String host, int port, boolean secure, String path) argument
172 setHost(String host) argument
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/connector/extension/
H A DCatalinaListener.java57 Host host;
66 host = (Host)context.getParent();
67 String[] names = host.getNetworkListenerNames();
/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/comm/
H A DHttpConnectorAddress.java65 * the client to set the host, port, security property and
80 private String host; field in class:HttpConnectorAddress
101 public HttpConnectorAddress(String host, int port){ argument
102 this(host, port, false);
105 * construct an address which indicates the host, port and
107 * @param host a host address
112 public HttpConnectorAddress(String host, int port, boolean secure){ argument
115 this.host = host;
124 HttpConnectorAddress(String host, int port, boolean secure, String path) argument
172 setHost(String host) argument
[all...]
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/org/glassfish/resources/custom/factory/
H A DURLObjectFactory.java61 String host = null;
73 }else if(type.equalsIgnoreCase("host")){
74 host = content;
92 if(protocol != null && host != null && port != -1 && file != null){
93 return new URL(protocol, host, port, file);
94 }else if(protocol != null && host != null && file != null){
95 return new URL(protocol, host, file);
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/client/
H A DAppserverConnectionSourceTest.java58 is no host/port available and no guarantee of a running server. All other aspects
73 final String host,
80 new AppserverConnectionSource(protocol, host, port, user, password, null);
89 final String host = (String) getEnvValue("HOST");
95 if (host == null || port == null || protocol == null ||
99 "host = " + host +
105 testConnect(host, new Integer(port).intValue(), protocol, user, password);
72 testConnect( final String host, final int port, final String protocol, final String user, final String password) argument
/glassfish-3.1.2/webservices/soap-tcp/src/main/java/org/glassfish/webservices/transport/tcp/
H A DConnector.java61 private final String host; field in class:Connector
69 public Connector(String host, int port, TCPMessageListener listener) { argument
70 this.host = host;
98 return host;
101 public void setHost(String host) { argument
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DClientNamingConfiguratorImpl.java72 public void setDefaultHost(String host) { argument
73 SerialInitContextFactory.setDefaultHost(host);

Completed in 61 milliseconds

1234567