Show AgentUndeployer.java syntax highlighted
/*
* Copyright (c) 2006
* Helsinki Institute of Physics
* see LICENSE file for details
*
* AgentUndeploy.java
* Created on 13-May-2006
*/
package fi.hip.gb.mobile;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation for tagging method used to undeploy agent instance from
* the server.
*
* @author Juho Karppinen
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface AgentUndeployer {
}
See more files for this project here