org.qas.qtest.api.internal.model.AbstractQTestApiServiceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qtest-sdk-java Show documentation
Show all versions of qtest-sdk-java Show documentation
A java SDK client wrap qTest REST API
The newest version!
package org.qas.qtest.api.internal.model;
import org.qas.api.ApiServiceRequest;
/**
* AbstractQTestApiServiceRequest
*
* @author Dzung Nguyen
* @version $Id AbstractQTestApiServiceRequest 2015-05-28 15:13:30z dzungvnguyen $
* @since 1.0
*/
public abstract class AbstractQTestApiServiceRequest extends ApiServiceRequest {
//~ class properties ========================================================
protected Long projectId;
//~ class members ===========================================================
/**
* @return the project identifier.
*/
public Long getProjectId() {
return projectId;
}
/**
* Sets the project identifier.
*
* @param projectId the given project identifier to set.
*/
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy