com.github.noraui.statistics.Statistics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of noraui Show documentation
Show all versions of noraui Show documentation
Non-Regression Automation for User Interfaces
/**
* NoraUi is licensed under the license GNU AFFERO GENERAL PUBLIC LICENSE
*
* @author Nicolas HALLOUIN
* @author Stéphane GRILLON
*/
package com.github.noraui.statistics;
import java.util.Map;
public class Statistics {
/**
* Name of NoraUi version use by the bot.
*/
private String norauiVersion;
/**
* Name of bot.
*/
private String name;
/**
* Maven groupId of bot.
*/
private String groupId;
/**
* Maven artifactId of bot.
*/
private String artifactId;
/**
* Maven version of bot.
*/
private String version;
/**
* Target aplications use by bot.
*/
private Map applications;
/**
* All java methods mapped by cucumber annotations.
*/
private Map cucumberMethods;
public String getNorauiVersion() {
return norauiVersion;
}
public void setNorauiVersion(String norauiVersion) {
this.norauiVersion = norauiVersion;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getGroupId() {
return groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getArtifactId() {
return artifactId;
}
public void setArtifactId(String artifactId) {
this.artifactId = artifactId;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public Map getApplications() {
return applications;
}
public void setApplications(Map applications) {
this.applications = applications;
}
public Map getCucumberMethods() {
return cucumberMethods;
}
public void setCucumberMethods(Map cucumberMethods) {
this.cucumberMethods = cucumberMethods;
}
}