view src/main/java/christie/annotation/RemoteTake.java @ 17:59fabebb67d8

delete cgmName as String, add cgmID as int
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Thu, 18 Jan 2018 16:49:54 +0900
parents
children 7b45ccc0f70e
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 dsmName();
    String cgmName();
    String key();
}