com.testdroid.api.model.APITestRunParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testdroid-api Show documentation
Show all versions of testdroid-api Show documentation
The Testdroid API library for Java
The newest version!
package com.testdroid.api.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.testdroid.api.APIEntity;
import java.io.Serializable;
/**
* @author Łukasz Kajda
*/
public class APITestRunParameter extends APIEntity implements Serializable {
private static final long serialVersionUID = 1L;
private String key;
private String value;
public APITestRunParameter() {
}
public APITestRunParameter(String key, String value) {
this(null, key, value);
}
public APITestRunParameter(Long id, String key, String value) {
super(id);
this.key = key;
this.value = value;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
@JsonIgnore
protected void clone(T from) {
APITestRunParameter apiTestRunParameter = (APITestRunParameter) from;
cloneBase(from);
this.key = apiTestRunParameter.key;
this.value = apiTestRunParameter.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy