package org.zstack.header.rest; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Created by xing5 on 2016/12/9. */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface RestResponse { String allTo() default ""; String[] fieldsTo() default {}; }