
com.wizzardo.http.framework.parameters.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http Show documentation
Show all versions of http Show documentation
Java HTTP-server, based on epoll-lib
The newest version!
package com.wizzardo.http.framework.parameters;
import java.lang.annotation.*;
/**
* Created by wizzardo on 16/10/16.
*/
@Target(value = {ElementType.PARAMETER, ElementType.FIELD})
@Retention(value = RetentionPolicy.RUNTIME)
public @interface Parameter {
class Constants {
final static String DEFAULT_NONE = "\r\n";
}
String name() default "";
String def() default Constants.DEFAULT_NONE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy