io.infinicast.client.api.paths.taskObjects.PathListWithCountResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinicast-client-jdk8 Show documentation
Show all versions of infinicast-client-jdk8 Show documentation
Infinicast SDK to communicate with the cloud.
package io.infinicast.client.api.paths.taskObjects;
import io.infinicast.client.api.paths.IAPathContext;
import io.infinicast.client.impl.pathAccess.IPathAndCount;
import java.util.ArrayList;
public class PathListWithCountResult {
ArrayList _list;
IAPathContext _context;
int _fullCount;
public ArrayList getList() {
return this._list;
}
public void setList(ArrayList value) {
this._list = value;
}
public IAPathContext getContext() {
return this._context;
}
public void setContext(IAPathContext value) {
this._context = value;
}
public int getFullCount() {
return this._fullCount;
}
public void setFullCount(int value) {
this._fullCount = value;
}
}