microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest 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.Asyncoperation;
import microsoft.dynamics.crm.entity.request.AsyncoperationRequest;
import microsoft.dynamics.crm.entity.request.BulkdeleteoperationRequest;
import microsoft.dynamics.crm.entity.request.DuplicaterecordRequest;
import microsoft.dynamics.crm.entity.request.EmailRequest;
import microsoft.dynamics.crm.entity.request.FileattachmentRequest;
import microsoft.dynamics.crm.entity.request.MailboxtrackingfolderRequest;
import microsoft.dynamics.crm.entity.request.SocialactivityRequest;
import microsoft.dynamics.crm.entity.request.WorkflowlogRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class AsyncoperationCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public AsyncoperationCollectionRequest(ContextPath contextPath) {
super(contextPath, Asyncoperation.class, cp -> new AsyncoperationRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public EmailCollectionRequest asyncOperation_Emails() {
return new EmailCollectionRequest(contextPath.addSegment("AsyncOperation_Emails"));
}
public EmailRequest asyncOperation_Emails(String activityid) {
return new EmailRequest(contextPath.addSegment("AsyncOperation_Emails").addKeys(new NameValue(activityid.toString())));
}
public BulkdeleteoperationCollectionRequest asyncOperation_BulkDeleteOperation() {
return new BulkdeleteoperationCollectionRequest(contextPath.addSegment("AsyncOperation_BulkDeleteOperation"));
}
public BulkdeleteoperationRequest asyncOperation_BulkDeleteOperation(String bulkdeleteoperationid) {
return new BulkdeleteoperationRequest(contextPath.addSegment("AsyncOperation_BulkDeleteOperation").addKeys(new NameValue(bulkdeleteoperationid.toString())));
}
public SocialactivityCollectionRequest asyncOperation_SocialActivities() {
return new SocialactivityCollectionRequest(contextPath.addSegment("AsyncOperation_SocialActivities"));
}
public SocialactivityRequest asyncOperation_SocialActivities(String activityid) {
return new SocialactivityRequest(contextPath.addSegment("AsyncOperation_SocialActivities").addKeys(new NameValue(activityid.toString())));
}
public WorkflowlogCollectionRequest lk_workflowlog_asyncoperation_childworkflow() {
return new WorkflowlogCollectionRequest(contextPath.addSegment("lk_workflowlog_asyncoperation_childworkflow"));
}
public WorkflowlogRequest lk_workflowlog_asyncoperation_childworkflow(String workflowlogid) {
return new WorkflowlogRequest(contextPath.addSegment("lk_workflowlog_asyncoperation_childworkflow").addKeys(new NameValue(workflowlogid.toString())));
}
public DuplicaterecordCollectionRequest asyncOperation_DuplicateBaseRecord() {
return new DuplicaterecordCollectionRequest(contextPath.addSegment("AsyncOperation_DuplicateBaseRecord"));
}
public DuplicaterecordRequest asyncOperation_DuplicateBaseRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("AsyncOperation_DuplicateBaseRecord").addKeys(new NameValue(duplicateid.toString())));
}
public MailboxtrackingfolderCollectionRequest asyncOperation_MailboxTrackingFolder() {
return new MailboxtrackingfolderCollectionRequest(contextPath.addSegment("AsyncOperation_MailboxTrackingFolder"));
}
public MailboxtrackingfolderRequest asyncOperation_MailboxTrackingFolder(String mailboxtrackingfolderid) {
return new MailboxtrackingfolderRequest(contextPath.addSegment("AsyncOperation_MailboxTrackingFolder").addKeys(new NameValue(mailboxtrackingfolderid.toString())));
}
public WorkflowlogCollectionRequest lk_workflowlog_asyncoperations() {
return new WorkflowlogCollectionRequest(contextPath.addSegment("lk_workflowlog_asyncoperations"));
}
public WorkflowlogRequest lk_workflowlog_asyncoperations(String workflowlogid) {
return new WorkflowlogRequest(contextPath.addSegment("lk_workflowlog_asyncoperations").addKeys(new NameValue(workflowlogid.toString())));
}
public FileattachmentCollectionRequest asyncoperation_FileAttachments() {
return new FileattachmentCollectionRequest(contextPath.addSegment("asyncoperation_FileAttachments"));
}
public FileattachmentRequest asyncoperation_FileAttachments(String fileattachmentid) {
return new FileattachmentRequest(contextPath.addSegment("asyncoperation_FileAttachments").addKeys(new NameValue(fileattachmentid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy