blob: 51b30bbe51c9cfae1c466e0d84c4800e7f6cf25e [file] [log] [blame]
/*
* Copyright (c) OSGi Alliance (2017). 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.apache.aries.cdi.extra.propertytypes;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.osgi.service.cdi.annotations.ComponentPropertyType;
import org.osgi.service.http.whiteboard.annotations.RequireHttpWhiteboard;
/**
* Component Property Type for the {@code osgi.http.whiteboard.resource.pattern}
* and {@code osgi.http.whiteboard.resource.prefix} service properties.
* <p>
* This annotation can be used on any service to declare the values of the
* {@link org.osgi.service.http.whiteboard.HttpWhiteboardConstants#HTTP_WHITEBOARD_RESOURCE_PATTERN
* HTTP_WHITEBOARD_RESOURCE_PATTERN} and
* {@link org.osgi.service.http.whiteboard.HttpWhiteboardConstants#HTTP_WHITEBOARD_RESOURCE_PREFIX
* HTTP_WHITEBOARD_RESOURCE_PREFIX} service properties.
*/
@ComponentPropertyType
@RequireHttpWhiteboard
@Retention(RUNTIME)
@Target({FIELD, METHOD, TYPE})
public @interface HttpWhiteboardResource {
/**
* Prefix for the property name. This value is prepended to each property
* name.
*/
String PREFIX_ = "osgi.http.whiteboard.resource.";
/**
* Service property identifying resource patterns.
*
* @return The resource patterns.
* @see org.osgi.service.http.whiteboard.HttpWhiteboardConstants#HTTP_WHITEBOARD_RESOURCE_PATTERN
* HTTP_WHITEBOARD_RESOURCE_PATTERN
*/
String[] pattern();
/**
* Service property identifying resource prefix.
*
* @return The resource patterns.
* @see org.osgi.service.http.whiteboard.HttpWhiteboardConstants#HTTP_WHITEBOARD_RESOURCE_PREFIX
* HTTP_WHITEBOARD_RESOURCE_PREFIX
*/
String prefix();
}