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

org.apache.juneau.rest.annotation.RestPostInitAnnotation 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 RestPostInit @RestPostInit} annotation.
 *
 * 
See Also:
*/ public class RestPostInitAnnotation { //----------------------------------------------------------------------------------------------------------------- // Static //----------------------------------------------------------------------------------------------------------------- /** Default value */ public static final RestPostInit 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 { boolean childFirst; /** * Constructor. */ protected Builder() { super(RestPostInit.class); } /** * Instantiates a new {@link RestPostInit @RestPostInit} object initialized with this builder. * * @return A new {@link RestPostInit @RestPostInit} object. */ public RestPostInit build() { return new Impl(this); } /** * Sets the {@link RestPostInit#childFirst()} property on this annotation. * * @return This object. */ public Builder childFirst() { this.childFirst = true; return 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 RestPostInit { private final boolean childFirst; Impl(Builder b) { super(b); this.childFirst = b.childFirst; postConstruct(); } @Override /* RestHook */ public boolean childFirst() { return childFirst; } } //----------------------------------------------------------------------------------------------------------------- // Other //----------------------------------------------------------------------------------------------------------------- /** * A collection of {@link RestPostInit @RestPostInit annotations}. */ @Documented @Target({METHOD,TYPE}) @Retention(RUNTIME) @Inherited public static @interface Array { /** * The child annotations. * * @return The annotation value. */ RestPostInit[] value(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy