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

org.apache.juneau.rest.annotation.RestPreCallAnnotation 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.juneau.rest.annotation;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;

import java.lang.annotation.*;

import org.apache.juneau.annotation.*;

/**
 * Utility classes and methods for the {@link RestPreCall @RestPreCall} annotation.
 *
 * 
See Also:
*/ public class RestPreCallAnnotation { //----------------------------------------------------------------------------------------------------------------- // Static //----------------------------------------------------------------------------------------------------------------- /** Default value */ public static final RestPreCall DEFAULT = create().build(); /** * Instantiates a new builder for this class. * * @return A new builder object. */ public static Builder create() { return new Builder(); } //----------------------------------------------------------------------------------------------------------------- // Builder //----------------------------------------------------------------------------------------------------------------- /** * Builder class. * *
See Also:
    *
  • {@link org.apache.juneau.BeanContext.Builder#annotations(Annotation...)} *
*/ public static class Builder extends TargetedAnnotationMBuilder { /** * Constructor. */ protected Builder() { super(RestPreCall.class); } /** * Instantiates a new {@link RestPreCall @RestPreCall} object initialized with this builder. * * @return A new {@link RestPreCall @RestPreCall} object. */ public RestPreCall build() { return new Impl(this); } // @Override /* GENERATED - TargetedAnnotationBuilder */ public Builder on(String...values) { super.on(values); return this; } @Override /* GENERATED - TargetedAnnotationTMBuilder */ public Builder on(java.lang.reflect.Method...value) { super.on(value); return this; } // } //----------------------------------------------------------------------------------------------------------------- // Implementation //----------------------------------------------------------------------------------------------------------------- private static class Impl extends TargetedAnnotationImpl implements RestPreCall { Impl(Builder b) { super(b); postConstruct(); } } //----------------------------------------------------------------------------------------------------------------- // Other //----------------------------------------------------------------------------------------------------------------- /** * A collection of {@link RestPreCall @RestPreCall annotations}. */ @Documented @Target({METHOD,TYPE}) @Retention(RUNTIME) @Inherited public static @interface Array { /** * The child annotations. * * @return The annotation value. */ RestPreCall[] value(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy