dev.sixpack.client.SupplierSetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK to develop generators part of the Sixpack solution
The newest version!
package dev.sixpack.client;
import dev.sixpack.api.data.Dataset;
public class SupplierSetter {
private final Dataset dataset;
public SupplierSetter(Dataset dataset) {
this.dataset = dataset;
}
/**
* Sets the supplier of the dataset.
*
* @param supplier The supplier of the dataset.
* @return The next builder in the chain.
*/
public ItemSetter fromSupplier(String supplier) {
dataset.setSupplier(supplier);
return new ItemSetter(dataset);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy