microsoft.dynamics.crm.entity.request.WorkflowlogRequest 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.request;
import com.fasterxml.jackson.annotation.JsonIgnoreType;
import com.github.davidmoten.odata.client.ContextPath;
import com.github.davidmoten.odata.client.EntityRequest;
import com.github.davidmoten.odata.client.NameValue;
import microsoft.dynamics.crm.entity.Workflowlog;
import microsoft.dynamics.crm.entity.collection.request.FileattachmentCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class WorkflowlogRequest extends EntityRequest {
public WorkflowlogRequest(ContextPath contextPath) {
super(Workflowlog.class, contextPath, SchemaInfo.INSTANCE);
}
public ProcesssessionRequest asyncoperationid_processsession() {
return new ProcesssessionRequest(contextPath.addSegment("asyncoperationid_processsession"));
}
public ProcesssessionRequest childworkflowinstanceid_processsession() {
return new ProcesssessionRequest(contextPath.addSegment("childworkflowinstanceid_processsession"));
}
public TeamRequest owningteam() {
return new TeamRequest(contextPath.addSegment("owningteam"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public AsyncoperationRequest childworkflowinstanceid_asyncoperation() {
return new AsyncoperationRequest(contextPath.addSegment("childworkflowinstanceid_asyncoperation"));
}
public ExpiredprocessRequest expiredProcess_asyncoperationid() {
return new ExpiredprocessRequest(contextPath.addSegment("ExpiredProcess_asyncoperationid"));
}
public TranslationprocessRequest translationProcess_asyncoperationid() {
return new TranslationprocessRequest(contextPath.addSegment("TranslationProcess_asyncoperationid"));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public AsyncoperationRequest asyncoperationid_asyncoperation() {
return new AsyncoperationRequest(contextPath.addSegment("asyncoperationid_asyncoperation"));
}
public NewprocessRequest newProcess_asyncoperationid() {
return new NewprocessRequest(contextPath.addSegment("NewProcess_asyncoperationid"));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public FileattachmentCollectionRequest workflowlog_FileAttachments() {
return new FileattachmentCollectionRequest(
contextPath.addSegment("workflowlog_FileAttachments"));
}
public FileattachmentRequest workflowlog_FileAttachments(String fileattachmentid) {
return new FileattachmentRequest(contextPath.addSegment("workflowlog_FileAttachments").addKeys(new NameValue(fileattachmentid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy