All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.versionone.apiclient.services.WithVariablesBuilder Maven / Gradle / Ivy

Go to download

A library for custom Java development against the VersionOne Development Platform's REST API.

There is a newer version: 16.1.3
Show newest version
package com.versionone.apiclient.services;

import com.versionone.apiclient.Query;


public class WithVariablesBuilder extends QueryBuilder {
	
    @Override
    protected void doBuild(Query query, BuildResult result) {
        if(query.getVariables() != null && !query.getVariables().isEmpty()) {
            result.querystringParts.add("with=" +  TextBuilder.join(query.getVariables(), ";"));
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy