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

com.github.switcherapi.client.SwitcherKey Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
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