/* * Copyright 2012-2017 the original author or authors. * * 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. */ package org.springframework.boot.autoconfigure.jersey; import java.util.HashMap; import java.util.Map; import org.springframework.boot.context.properties.ConfigurationProperties; /** * {@link ConfigurationProperties} for Jersey. * * @author Dave Syer * @author EddĂș MelĂ©ndez * @author Stephane Nicoll * @since 1.2.0 */ @ConfigurationProperties(prefix = "spring.jersey") public class JerseyProperties { /** * Jersey integration type. */ private Type type = Type.SERVLET; /** * Init parameters to pass to Jersey via the servlet or filter. */ private Map<String, String> init = new HashMap<>(); private final Filter filter = new Filter(); private final Servlet servlet = new Servlet(); /** * Path that serves as the base URI for the application. Overrides the value of * "@ApplicationPath" if specified. */ private String applicationPath; public Filter getFilter() { return this.filter; } public Servlet getServlet() { return this.servlet; } public Type getType() { return this.type; } public void setType(Type type) { this.type = type; } public Map<String, String> getInit() { return this.init; } public void setInit(Map<String, String> init) { this.init = init; } public String getApplicationPath() { return this.applicationPath; } public void setApplicationPath(String applicationPath) { this.applicationPath = applicationPath; } public enum Type { SERVLET, FILTER } public static class Filter { /** * Jersey filter chain order. */ private int order; public int getOrder() { return this.order; } public void setOrder(int order) { this.order = order; } } public static class Servlet { /** * Load on startup priority of the Jersey servlet. */ private int loadOnStartup = -1; public int getLoadOnStartup() { return this.loadOnStartup; } public void setLoadOnStartup(int loadOnStartup) { this.loadOnStartup = loadOnStartup; } } }