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

org.yamcs.utils.DeprecationInfo Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.utils;

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

/**
 * Annotation used to mark service that have been deprecated.
 * Information can be provided on how to resolve the problem (i.e. write the replacement service).
 *  
 * The information will be printed in the yamcs logs when the service is loaded.
 * 
 * @author nm
 *
 */
@Retention(value=RetentionPolicy.RUNTIME)
public @interface DeprecationInfo {
    String info();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy