view src/main/java/christie/annotation/RemoteTake.java @ 28:d1fc3ebb269e

minor change
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Tue, 30 Jan 2018 19:55:14 +0900
parents 7b45ccc0f70e
children
line wrap: on
line source

package christie.annotation;


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

/**
 * Created by e125769 on 12/7/17.
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface RemoteTake {
    String dgmName();
    String key();
}