microsoft.dynamics.crm.entity.request.Msdyn_dataflowRequest 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.Msdyn_dataflow;
import microsoft.dynamics.crm.entity.collection.request.AsyncoperationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.BulkdeletefailureCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.DuplicaterecordCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.MailboxtrackingfolderCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.PrincipalobjectattributeaccessCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.ProcesssessionCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class Msdyn_dataflowRequest extends EntityRequest {
public Msdyn_dataflowRequest(ContextPath contextPath) {
super(Msdyn_dataflow.class, contextPath, SchemaInfo.INSTANCE);
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public SystemuserRequest owninguser() {
return new SystemuserRequest(contextPath.addSegment("owninguser"));
}
public TeamRequest owningteam() {
return new TeamRequest(contextPath.addSegment("owningteam"));
}
public PrincipalRequest ownerid() {
return new PrincipalRequest(contextPath.addSegment("ownerid"));
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public SyncerrorCollectionRequest msdyn_dataflow_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("msdyn_dataflow_SyncErrors"));
}
public SyncerrorRequest msdyn_dataflow_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("msdyn_dataflow_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public DuplicaterecordCollectionRequest msdyn_dataflow_DuplicateMatchingRecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("msdyn_dataflow_DuplicateMatchingRecord"));
}
public DuplicaterecordRequest msdyn_dataflow_DuplicateMatchingRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("msdyn_dataflow_DuplicateMatchingRecord").addKeys(new NameValue(duplicateid.toString())));
}
public DuplicaterecordCollectionRequest msdyn_dataflow_DuplicateBaseRecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("msdyn_dataflow_DuplicateBaseRecord"));
}
public DuplicaterecordRequest msdyn_dataflow_DuplicateBaseRecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("msdyn_dataflow_DuplicateBaseRecord").addKeys(new NameValue(duplicateid.toString())));
}
public AsyncoperationCollectionRequest msdyn_dataflow_AsyncOperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("msdyn_dataflow_AsyncOperations"));
}
public AsyncoperationRequest msdyn_dataflow_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("msdyn_dataflow_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public MailboxtrackingfolderCollectionRequest msdyn_dataflow_MailboxTrackingFolders() {
return new MailboxtrackingfolderCollectionRequest(
contextPath.addSegment("msdyn_dataflow_MailboxTrackingFolders"));
}
public MailboxtrackingfolderRequest msdyn_dataflow_MailboxTrackingFolders(String mailboxtrackingfolderid) {
return new MailboxtrackingfolderRequest(contextPath.addSegment("msdyn_dataflow_MailboxTrackingFolders").addKeys(new NameValue(mailboxtrackingfolderid.toString())));
}
public ProcesssessionCollectionRequest msdyn_dataflow_ProcessSession() {
return new ProcesssessionCollectionRequest(
contextPath.addSegment("msdyn_dataflow_ProcessSession"));
}
public ProcesssessionRequest msdyn_dataflow_ProcessSession(String processsessionid) {
return new ProcesssessionRequest(contextPath.addSegment("msdyn_dataflow_ProcessSession").addKeys(new NameValue(processsessionid.toString())));
}
public BulkdeletefailureCollectionRequest msdyn_dataflow_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(
contextPath.addSegment("msdyn_dataflow_BulkDeleteFailures"));
}
public BulkdeletefailureRequest msdyn_dataflow_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("msdyn_dataflow_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public PrincipalobjectattributeaccessCollectionRequest msdyn_dataflow_PrincipalObjectAttributeAccesses() {
return new PrincipalobjectattributeaccessCollectionRequest(
contextPath.addSegment("msdyn_dataflow_PrincipalObjectAttributeAccesses"));
}
public PrincipalobjectattributeaccessRequest msdyn_dataflow_PrincipalObjectAttributeAccesses(String principalobjectattributeaccessid) {
return new PrincipalobjectattributeaccessRequest(contextPath.addSegment("msdyn_dataflow_PrincipalObjectAttributeAccesses").addKeys(new NameValue(principalobjectattributeaccessid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy