br.eti.kinoshita.testlinkjavaapi.model.Requirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testlink-java-api Show documentation
Show all versions of testlink-java-api Show documentation
TestLink Java API to interface with TestLink PHP XML-RPC API.
/**
*
*/
package br.eti.kinoshita.testlinkjavaapi.model;
import java.io.Serializable;
/**
* @author Bruno P. Kinoshita - http://www.kinoshita.eti.br
* @since 1.9.0-1
*/
public class Requirement
implements Serializable
{
private static final long serialVersionUID = -972032974806459521L;
private Integer id;
private Integer reqSpecId;
private String reqDocId;
/**
*
*/
public Requirement() {
super();
}
/**
* @param id
* @param reqSpecId
* @param reqDocId
*/
public Requirement(Integer id, Integer reqSpecId, String reqDocId) {
super();
this.id = id;
this.reqSpecId = reqSpecId;
this.reqDocId = reqDocId;
}
/**
* @return the id
*/
public Integer getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(Integer id) {
this.id = id;
}
/**
* @return the reqSpecId
*/
public Integer getReqSpecId() {
return reqSpecId;
}
/**
* @param reqSpecId the reqSpecId to set
*/
public void setReqSpecId(Integer reqSpecId) {
this.reqSpecId = reqSpecId;
}
/**
* @return the reqDocId
*/
public String getReqDocId() {
return reqDocId;
}
/**
* @param reqDocId the reqDocId to set
*/
public void setReqDocId(String reqDocId) {
this.reqDocId = reqDocId;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "Requirement [id=" + id + ", reqSpecId=" + reqSpecId
+ ", reqDocId=" + reqDocId + "]";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy