microsoft.dynamics.crm.entity.collection.request.UserformCollectionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-client-microsoft-dynamics Show documentation
Show all versions of odata-client-microsoft-dynamics Show documentation
Java client as template for Microsoft Dynamics organisation endpoints
package microsoft.dynamics.crm.entity.collection.request;
import com.github.davidmoten.odata.client.CollectionPageEntityRequest;
import com.github.davidmoten.odata.client.ContextPath;
import com.github.davidmoten.odata.client.NameValue;
import microsoft.dynamics.crm.entity.Userform;
import microsoft.dynamics.crm.entity.request.AsyncoperationRequest;
import microsoft.dynamics.crm.entity.request.BulkdeletefailureRequest;
import microsoft.dynamics.crm.entity.request.UserformRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class UserformCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public UserformCollectionRequest(ContextPath contextPath) {
super(contextPath, Userform.class, cp -> new UserformRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public AsyncoperationCollectionRequest userForm_AsyncOperations() {
return new AsyncoperationCollectionRequest(contextPath.addSegment("UserForm_AsyncOperations"));
}
public AsyncoperationRequest userForm_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("UserForm_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public BulkdeletefailureCollectionRequest userForm_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(contextPath.addSegment("UserForm_BulkDeleteFailures"));
}
public BulkdeletefailureRequest userForm_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("UserForm_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy