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

org.fluentlenium.configuration.CustomProperty Maven / Gradle / Ivy

There is a newer version: 5.0.4
Show newest version
package org.fluentlenium.configuration;

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

/**
 * Annotation configuration custom property.
 */
@Target(ElementType.ANNOTATION_TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomProperty {
    /**
     * Property name
     *
     * @return property name
     */
    String name();

    /**
     * Property value
     *
     * @return property value
     */
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy