* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/**
* Constructor.
- *
+ *
* @param name server name
* @param host server host
* @param port server port
* @param contextPath context path
- *
+ *
* @throws IllegalArgumentException if invalid parameters are passed in
*/
public JettyServletServer(String name, boolean https, String host, int port, String contextPath) {
/**
* Returns the https connector.
- *
+ *
* @return the server connector
*/
public ServerConnector httpsConnector() {
this.jettyServer.start();
- if (logger.isInfoEnabled()) {
- logger.info("{}: STARTED: {}", this, this.jettyServer.dump());
+ if (logger.isTraceEnabled()) {
+ logger.trace("{}: STARTED: {}", this, this.jettyServer.dump());
}
synchronized (this.startCondition) {
/**
* Get name.
- *
+ *
* @return the name
*/
public String getName() {
/**
* Get host.
- *
+ *
* @return the host
*/
public String getHost() {
/**
* Get user.
- *
+ *
* @return the user
*/
public String getUser() {
/**
* Get password.
- *
+ *
* @return the password
*/
@JsonIgnore