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

com.sdklite.rpc.annotation.QueryParameter Maven / Gradle / Ivy

package com.sdklite.rpc.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Represents a parameter in URL query
 * 
 * @author johnsonlee
 *
 */
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface QueryParameter {

    /**
     * Returns the parameter name
     */
    String value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy