io.qameta.allure.entity.Link Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-plugin-api Show documentation
Show all versions of allure-plugin-api Show documentation
Module allure-plugin-api of Allure Framework.
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 Link implements Serializable {
private static final long serialVersionUID = 1L;
protected String name;
protected String url;
protected String type;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy