microsoft.dynamics.crm.entity.request.EmailserverprofileRequest 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.Emailserverprofile;
import microsoft.dynamics.crm.entity.collection.request.AnnotationCollectionRequest;
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.MailboxCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.OrganizationCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.SyncerrorCollectionRequest;
import microsoft.dynamics.crm.entity.collection.request.TracelogCollectionRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
@JsonIgnoreType
public class EmailserverprofileRequest extends EntityRequest {
public EmailserverprofileRequest(ContextPath contextPath) {
super(Emailserverprofile.class, contextPath, SchemaInfo.INSTANCE);
}
public SystemuserRequest createdonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("createdonbehalfby"));
}
public SystemuserRequest modifiedonbehalfby() {
return new SystemuserRequest(contextPath.addSegment("modifiedonbehalfby"));
}
public MailboxCollectionRequest emailserverprofile_mailbox() {
return new MailboxCollectionRequest(
contextPath.addSegment("emailserverprofile_mailbox"));
}
public MailboxRequest emailserverprofile_mailbox(String mailboxid) {
return new MailboxRequest(contextPath.addSegment("emailserverprofile_mailbox").addKeys(new NameValue(mailboxid.toString())));
}
public AsyncoperationCollectionRequest emailserverprofile_asyncoperations() {
return new AsyncoperationCollectionRequest(
contextPath.addSegment("emailserverprofile_asyncoperations"));
}
public AsyncoperationRequest emailserverprofile_asyncoperations(String asyncoperationid) {
return new AsyncoperationRequest(contextPath.addSegment("emailserverprofile_asyncoperations").addKeys(new NameValue(asyncoperationid.toString())));
}
public SystemuserRequest createdby() {
return new SystemuserRequest(contextPath.addSegment("createdby"));
}
public OrganizationRequest organizationid() {
return new OrganizationRequest(contextPath.addSegment("organizationid"));
}
public BusinessunitRequest owningbusinessunit() {
return new BusinessunitRequest(contextPath.addSegment("owningbusinessunit"));
}
public TeamRequest owningteam() {
return new TeamRequest(contextPath.addSegment("owningteam"));
}
public PrincipalRequest ownerid() {
return new PrincipalRequest(contextPath.addSegment("ownerid"));
}
public BulkdeletefailureCollectionRequest emailserverprofile_bulkdeletefailures() {
return new BulkdeletefailureCollectionRequest(
contextPath.addSegment("emailserverprofile_bulkdeletefailures"));
}
public BulkdeletefailureRequest emailserverprofile_bulkdeletefailures(String bulkdeletefailureid) {
return new BulkdeletefailureRequest(contextPath.addSegment("emailserverprofile_bulkdeletefailures").addKeys(new NameValue(bulkdeletefailureid.toString())));
}
public OrganizationCollectionRequest emailServerProfile_Organization() {
return new OrganizationCollectionRequest(
contextPath.addSegment("EmailServerProfile_Organization"));
}
public OrganizationRequest emailServerProfile_Organization(String organizationid) {
return new OrganizationRequest(contextPath.addSegment("EmailServerProfile_Organization").addKeys(new NameValue(organizationid.toString())));
}
public SystemuserRequest modifiedby() {
return new SystemuserRequest(contextPath.addSegment("modifiedby"));
}
public TracelogCollectionRequest tracelog_EmailServerProfile() {
return new TracelogCollectionRequest(
contextPath.addSegment("tracelog_EmailServerProfile"));
}
public TracelogRequest tracelog_EmailServerProfile(String tracelogid) {
return new TracelogRequest(contextPath.addSegment("tracelog_EmailServerProfile").addKeys(new NameValue(tracelogid.toString())));
}
public AnnotationCollectionRequest emailServerProfile_Annotation() {
return new AnnotationCollectionRequest(
contextPath.addSegment("EmailServerProfile_Annotation"));
}
public AnnotationRequest emailServerProfile_Annotation(String annotationid) {
return new AnnotationRequest(contextPath.addSegment("EmailServerProfile_Annotation").addKeys(new NameValue(annotationid.toString())));
}
public DuplicaterecordCollectionRequest emailserverprofile_duplicatematchingrecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("emailserverprofile_duplicatematchingrecord"));
}
public DuplicaterecordRequest emailserverprofile_duplicatematchingrecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("emailserverprofile_duplicatematchingrecord").addKeys(new NameValue(duplicateid.toString())));
}
public SyncerrorCollectionRequest emailServerProfile_SyncErrors() {
return new SyncerrorCollectionRequest(
contextPath.addSegment("EmailServerProfile_SyncErrors"));
}
public SyncerrorRequest emailServerProfile_SyncErrors(String syncerrorid) {
return new SyncerrorRequest(contextPath.addSegment("EmailServerProfile_SyncErrors").addKeys(new NameValue(syncerrorid.toString())));
}
public DuplicaterecordCollectionRequest emailserverprofile_duplicatebaserecord() {
return new DuplicaterecordCollectionRequest(
contextPath.addSegment("emailserverprofile_duplicatebaserecord"));
}
public DuplicaterecordRequest emailserverprofile_duplicatebaserecord(String duplicateid) {
return new DuplicaterecordRequest(contextPath.addSegment("emailserverprofile_duplicatebaserecord").addKeys(new NameValue(duplicateid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy