![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.rest.annotation.RestInitAnnotation 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 RestInit @RestInit} annotation.
*
* See Also:
* - Lifecycle Hooks
*
*/
public class RestInitAnnotation {
//-----------------------------------------------------------------------------------------------------------------
// Static
//-----------------------------------------------------------------------------------------------------------------
/** Default value */
public static final RestInit 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(RestInit.class);
}
/**
* Instantiates a new {@link RestInit @RestInit} object initialized with this builder.
*
* @return A new {@link RestInit @RestInit} object.
*/
public RestInit 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 RestInit {
Impl(Builder b) {
super(b);
postConstruct();
}
}
//-----------------------------------------------------------------------------------------------------------------
// Other
//-----------------------------------------------------------------------------------------------------------------
/**
* A collection of {@link RestInit @RestInit annotations}.
*/
@Documented
@Target({METHOD,TYPE})
@Retention(RUNTIME)
@Inherited
public static @interface Array {
/**
* The child annotations.
*
* @return The annotation value.
*/
RestInit[] value();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy