
de.taimos.dvalin.jaxrs.SpringCXFProperties Maven / Gradle / Ivy
package de.taimos.dvalin.jaxrs;
/*
* #%L
* JAX-RS support for dvalin using Apache CXF
* %%
* Copyright (C) 2015 Taimos GmbH
* %%
* 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.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
public interface SpringCXFProperties {
/**
* the port to bind to
* default: 8080
*/
String JAXRS_BINDPORT = "jaxrs.bindport";
/**
* the host to bind to
* default: 0.0.0.0
*/
String JAXRS_BINDHOST = "jaxrs.bindhost";
/**
* the base path of the JAX-RS endpoint
* default:
*/
String JAXRS_PATH = "jaxrs.path";
/**
* the service annotation
* default: JaxRsComponent
*/
String JAXRS_ANNOTATION = "jaxrs.annotation";
/**
* the duration threshold before logging slow requests
* default: 1000 ms
*/
String JAXRS_SLOWLOG = "jaxrs.slowlog";
/**
* send the jetty version as Response Header
* default: false
*/
String JETTY_SENDVERSION = "jetty.sendVersion";
/**
* minimum number of jetty threads
* default: 5
*/
String JETTY_MINTHREADS = "jetty.minThreads";
/**
* maximum number of jetty threads
* default: 150
*/
String JETTY_MAXTHREADS = "jetty.MaxThreads";
/**
* use Jetty sessions
* default: false
*/
String JETTY_SESSIONS = "jetty.sessions";
/**
* the public base URL of the server
* default: http://localhost:<port>
*/
String SERVER_URL = "server.url";
/**
* the class to use as default handler
* default: org.eclipse.jetty.server.handler.DefaultHandler
*/
String DEFAULT_HANDLER = "defaultHandlerClass";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy