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

com.iwbfly.myhttp.annotation.Query Maven / Gradle / Ivy

The newest version!
package com.iwbfly.myhttp.annotation;

import com.iwbfly.myhttp.lifecycles.param.QueryLifeCycle;
import java.lang.annotation.*;

@Documented
@ParamLifeCycle(QueryLifeCycle.class)
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface Query {

    /**
     * URL query name
     * @return value
     */
    String value() default "";

    /**
     * The filters will do some processing for the query value before sending request.
     * @return filter
     */
    String filter() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy