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

cn.tom.mvc.annotation.Response Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.tom.mvc.annotation;

import java.lang.annotation.*;

public class Response {
	/**
	 * response返回inputStream解析
	 */
	@Target(ElementType.METHOD)
	@Retention(RetentionPolicy.RUNTIME)
	public static @interface Stream {
		public ContentType value();
	}

	@Target(ElementType.METHOD)
	@Retention(RetentionPolicy.RUNTIME)
	public @interface Json {
	}
	
	
	@Target(ElementType.METHOD)
	@Retention(RetentionPolicy.RUNTIME)
	public @interface Html {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy