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

uk.org.retep.xmpp.annotation.XMPPProtocol Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package uk.org.retep.xmpp.annotation;

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

/**
 * Documentation annotation which lists which XEP's a Package, Type or Method
 * either implements or conforms to.
 *
 * 

* This annotation is optional however it's use is encouraged to help in * maintaining code so that maintainers can refer to the relevant XEP's * as required if they need to look at why code is doing what it is. *

* * @author peter */ @Documented @Retention( RetentionPolicy.CLASS ) @Target( ElementType.PACKAGE ) public @interface XMPPProtocol { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy