![JAR search and dependency download from the Maven repository](/logo.png)
org.qas.qtest.api.services.link.model.GetArtifactLinkRequest 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.link.model;
import org.qas.api.ApiServiceRequest;
import org.qas.qtest.api.internal.model.ObjectType;
import java.util.List;
/**
* @author trongle
* @version $Id 4/21/2017 2:51 PM
*/
public final class GetArtifactLinkRequest extends ApiServiceRequest {
private Long projectId;
/**
* Artifact type
*/
private ObjectType type;
/**
* Artifact id
*/
private List artifactIds;
public Long getProjectId() {
return projectId;
}
public GetArtifactLinkRequest setProjectId(Long projectId) {
this.projectId = projectId;
return this;
}
public ObjectType getType() {
return type;
}
public GetArtifactLinkRequest setType(ObjectType type) {
this.type = type;
return this;
}
public List getArtifactIds() {
return artifactIds;
}
public GetArtifactLinkRequest setArtifactIds(List artifactIds) {
this.artifactIds = artifactIds;
return this;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("GetArtifactLinkRequest{");
sb.append("projectId=").append(projectId);
sb.append(", type=").append(type);
sb.append(", artifactIds=").append(artifactIds);
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy