io.qameta.allure.entity.Label Maven / Gradle / Ivy
package io.qameta.allure.entity;
import lombok.Data;
import lombok.experimental.Accessors;
import java.io.Serializable;
/**
* @author charlie (Dmitry Baev).
*/
@Data
@Accessors(chain = true)
public class Label implements Serializable {
private static final long serialVersionUID = 1L;
protected String name;
protected String value;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy