microsoft.dynamics.crm.entity.collection.request.ExpiredprocessCollectionRequest 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.Expiredprocess;
import microsoft.dynamics.crm.entity.request.ExpiredprocessRequest;
import microsoft.dynamics.crm.entity.request.ProcesssessionRequest;
import microsoft.dynamics.crm.entity.request.SyncerrorRequest;
import microsoft.dynamics.crm.entity.request.WorkflowlogRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class ExpiredprocessCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public ExpiredprocessCollectionRequest(ContextPath contextPath) {
super(contextPath, Expiredprocess.class, cp -> new ExpiredprocessRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public SyncerrorCollectionRequest expiredProcess_SyncErrors() {
return new SyncerrorCollectionRequest(contextPath.addSegment("ExpiredProcess_SyncErrors"));
}
public SyncerrorRequest expiredProcess_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("ExpiredProcess_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public ProcesssessionCollectionRequest expiredProcess_ProcessSessions() {
return new ProcesssessionCollectionRequest(contextPath.addSegment("ExpiredProcess_ProcessSessions"));
}
public ProcesssessionRequest expiredProcess_ProcessSessions(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("ExpiredProcess_ProcessSessions").addKeys(new NameValue(processsessionid.toString())));
}
public WorkflowlogCollectionRequest workflowlogs_expiredprocess() {
return new WorkflowlogCollectionRequest(contextPath.addSegment("workflowlogs_expiredprocess"));
}
public WorkflowlogRequest workflowlogs_expiredprocess(String workflowlogid) {
return new WorkflowlogRequest(contextPath.addSegment("workflowlogs_expiredprocess").addKeys(new NameValue(workflowlogid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy