microsoft.dynamics.crm.entity.collection.request.ImportlogCollectionRequest 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.Importlog;
import microsoft.dynamics.crm.entity.request.AsyncoperationRequest;
import microsoft.dynamics.crm.entity.request.BulkdeletefailureRequest;
import microsoft.dynamics.crm.entity.request.ImportlogRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class ImportlogCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public ImportlogCollectionRequest(ContextPath contextPath) {
super(contextPath, Importlog.class, cp -> new ImportlogRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public BulkdeletefailureCollectionRequest importLog_BulkDeleteFailures() {
return new BulkdeletefailureCollectionRequest(contextPath.addSegment("ImportLog_BulkDeleteFailures"));
}
public BulkdeletefailureRequest importLog_BulkDeleteFailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("ImportLog_BulkDeleteFailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public AsyncoperationCollectionRequest importLog_AsyncOperations() {
return new AsyncoperationCollectionRequest(contextPath.addSegment("ImportLog_AsyncOperations"));
}
public AsyncoperationRequest importLog_AsyncOperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("ImportLog_AsyncOperations").addKeys(new NameValue(asyncoperationid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy