blob: 5d09244f6acbc3b7a84d6177bbfbc833a97e3753 [file] [log] [blame]
/*
* Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
*
* 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.osgi.service.jaxrs.runtime.dto;
import org.osgi.dto.DTO;
import org.osgi.service.jaxrs.runtime.JaxRSServiceRuntime;
import org.osgi.service.jaxrs.whiteboard.JaxRSWhiteboardConstants;
/**
* Represents a JAX-RS Interceptor service currently being hosted by the
* {@link JaxRSServiceRuntime}
*
* @NotThreadSafe
* @author $Id: 1439e80cb16c3884d2d7df675dda5c28f875f11a $
*/
public class InterceptorDTO extends DTO {
/**
* The request mappings for the interceptor, as declared in
* {@link JaxRSWhiteboardConstants#JAX_RS_INTERCEPTOR_BASE}
*
* <p>
* The specified patterns are used to determine whether a request is mapped
* to the interceptor. This array might be empty.
*/
public String[] baseUris;
/**
* The resourceDTOs that are mapped to this interceptor using a named
* annotation
*/
public ResourceDTO[] interceptedByName;
/**
* Service property identifying the JAX-RS interceptor service.
*/
public long serviceId;
}