All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.deltaspike.core.api.exclude.Exclude Maven / Gradle / Ivy

/*
 * 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.deltaspike.core.api.exclude;

import org.apache.deltaspike.core.api.interpreter.ExpressionInterpreter;
import org.apache.deltaspike.core.api.projectstage.ProjectStage;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Supported usages:
 * 
 * @Exclude
 * @Exclude(ifProjectStage=Production.class)
 * @Exclude(exceptIfProjectStage=UnitTest.class)
 * @Exclude(onExpression="myProperty==myValue")
 * @Exclude(onExpression="[my custom expression syntax]", interpretedBy=CustomExpressionInterpreter.class)
 * 
* *

* examples: *

*

the following bean gets excluded in any case

*
 * @Exclude
 * public class NoBean {}
 * 
* *

*

the following bean gets excluded in case of project-stage development

*
 * @Exclude(ifProjectStage = ProjectStage.Development.class)
 * public class ProductionBean {}
 * 
* *

*

the following bean gets excluded in every case except of project-stage development

*
 * @Exclude(exceptIfProjectStage = ProjectStage.Development.class)
 * public class DevBean {}
 * 
* *

*

the following bean gets excluded if the expression evaluates to true. * that means there is a configured property called 'myProper' with the value 'myValue'

*
 * @Exclude(onExpression="myProperty==myValue")
 * public class ProductionBean {}
 * 
* *

*

the following bean gets excluded if the expression evaluates to true

* @Exclude(onExpression="[my custom expression syntax]", interpretedBy=CustomExpressionInterpreter.class) * public class ProductionBean {} */ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.TYPE }) public @interface Exclude { /** * The {@link org.apache.deltaspike.core.api.projectstage.ProjectStage}s * which lead to deactivating this bean. * If the current ProjectStage is in this list, the bean will get vetoed. * @return 1-n project-stages which are not allowed for the annotated artifact */ Class[] ifProjectStage() default { }; /** * The {@link org.apache.deltaspike.core.api.projectstage.ProjectStage}s * which lead to activating this bean. * If the current ProjectStage is not in this list, the bean will get vetoed. * @return 1-n project-stages which are allowed for the annotated artifact */ Class[] exceptIfProjectStage() default { }; /** * Expression which signals if the annotated bean should be deactivated or not * @return expression-string which will be interpreted */ String onExpression() default ""; /** * @return class of the interpreter which should be used (default leads to a simple config-property interpreter) */ Class interpretedBy() default ExpressionInterpreter.class; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy