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

com.newrelic.api.agent.weaver.WeaveAllConstructors Maven / Gradle / Ivy

/*
 *
 *  * Copyright 2020 New Relic Corporation. All rights reserved.
 *  * SPDX-License-Identifier: Apache-2.0
 *
 */

package com.newrelic.api.agent.weaver;

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

/**
 *
 * A constructor with this annotation will be weaved into all constructors of a Weave class.
 *
 * If this annotation is present, no other Weave constructors are allowed.
 */
@Target(ElementType.CONSTRUCTOR)
@Retention(RetentionPolicy.RUNTIME)
public @interface WeaveAllConstructors {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy