/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.felix.dm.annotation.api; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * This annotation describes the data types of a configuration Property. * It can be used by other annotations which require meta type support. * For now, the following annotations are using <code>PropertyMetaData</code>: * <ul> * <li>{@link ConfigurationDependency}: This dependency allows to define a * dependency over a <code>Configuration Admin</code> configuration dictionaries, whose * metadata can be described using <code>PropertyMetaData</code> annotation. * <li>{@link FactoryConfigurationAdapterService}: This service adapter allows * to dynamically create Services on behalf of <code>Factory Configuration Admin</code> * configuration dictionaries, whose metadata can be described using this <code>PropertyMetaData</code> annotation. * </ul> * * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a> */ @Retention(RetentionPolicy.CLASS) @Target(ElementType.ANNOTATION_TYPE) public @interface PropertyMetaData { /** * The label used to display the property. Example: "Log Level". * @return The label used to display the property */ String heading(); /** * The key of a ConfigurationAdmin property. Example: "printer.logLevel" * @return The Configuration Admin property name */ String id(); /** * Return the property primitive type. If must be either one of the following types: * <ul> * <li>String.class</li> * <li>Long.class</li> * <li>Integer.class</li> * <li>Character.class</li> * <li>Byte.class</li> * <li>Double.class</li> * <li>Float.class</li> * <li>Boolean.class</li> * </ul> * @return the property type */ Class<?> type() default String.class; /** * Return default value(s) for this property. The object must be of the appropriate type as defined by the cardinality and getType(). * The return type is a list of String objects that can be converted to the appropriate type. The cardinality of the return * array must follow the absolute cardinality of this type. E.g. if the cardinality = 0, the array must contain 1 element. * If the cardinality is 1, it must contain 0 or 1 elements. If it is -5, it must contain from 0 to max 5 elements. Note that * the special case of a 0 cardinality, meaning a single value, does not allow arrays or vectors of 0 elements. * @return the default values */ String[] defaults() default {}; /** * Returns the property description. The description may be localized and must describe the semantics of this type and any * constraints. Example: "Select the log level for the Printer Service". * @return The localized description of the definition. */ String description(); /** * Return the cardinality of this property. The OSGi environment handles multi valued properties in arrays ([]) or in Vector objects. * The return value is defined as follows: * * <ul> * <li> x = Integer.MIN_VALUE no limit, but use Vector</li> * <li> x lower than 0 -x = max occurrences, store in Vector</li> * <li> x greater than 0 x = max occurrences, store in array []</li> * <li> x equals Integer.MAX_VALUE no limit, but use array []</li> * <li> x equals 0 1 occurrence required</li> * </ul> * @return the property cardinality */ int cardinality() default 0; /** * Tells if this property is required or not. * @return true if the property is required, false if not */ boolean required() default true; /** * Return a list of valid option labels for this property. The purpose of this method is to allow menus with localized labels. * It is associated with the {@link #optionValues()} attribute. The labels returned here are ordered in the same way as the * {@link #optionValues()} attribute values. * @return the list of valid option labels for this property. */ String[] optionLabels() default {}; /** * Return a list of option values that this property can take. This list must be in the same sequence as the {@link #optionLabels()} * attribute. * @return the option values */ String[] optionValues() default {}; }