com.versionone.apiclient.services.QueryFind Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VersionOne.SDK.Java.APIClient Show documentation
Show all versions of VersionOne.SDK.Java.APIClient Show documentation
A library for custom Java development against the VersionOne Development Platform's REST API.
package com.versionone.apiclient.services;
import com.versionone.apiclient.AttributeSelection;
public class QueryFind {
public final String text;
public final AttributeSelection attributes;
public QueryFind(String text) {
this(text, new AttributeSelection());
}
public QueryFind(String text, AttributeSelection sel) {
this.text = text;
attributes = sel;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy