com.github.switcherapi.client.SwitcherKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of switcher-client Show documentation
Show all versions of switcher-client Show documentation
Switcher Client SDK for working with Switcher API
package com.github.switcherapi.client;
import com.github.switcherapi.client.test.SwitcherTest;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Defines Switchers Keys that can be used.
*
*
* The best way to define a Switcher Key in your Context class is:
*
* public static final String SWITCHER_KEY = "SWITCHER_KEY"
*
*
* The attribute name is used to be sent to the API and its value
* is used to work with {@link SwitcherTest}
*
* @author Roger Floriano (petruki)
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface SwitcherKey {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy