![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.qtest.api.services.project.model.GetUserPermissionsRequest 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.services.project.model;
import org.qas.api.ApiServiceRequest;
/**
* GetUserPermissionsRequest
*
* @author Dzung Nguyen
* @version $Id GetUserPermissionsRequest 2014-11-07 12:46:30z dungvnguyen $
* @since 1.0
*/
public final class GetUserPermissionsRequest extends ApiServiceRequest {
//~ class properties ========================================================
private 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;
}
/**
* Sets the project identifier.
*
* @param projectId the given project identifier to set.
* @return the current request instance.
*/
public GetUserPermissionsRequest withProjectId(Long projectId) {
setProjectId(projectId);
return this;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("GetUserPermissionsRequest{\n");
sb.append("\tprojectId: ").append(projectId).append("\n");
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy