microsoft.dynamics.crm.entity.collection.request.LanguagelocaleCollectionRequest 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.Languagelocale;
import microsoft.dynamics.crm.entity.request.KnowledgearticleRequest;
import microsoft.dynamics.crm.entity.request.LanguagelocaleRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class LanguagelocaleCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public LanguagelocaleCollectionRequest(ContextPath contextPath) {
super(contextPath, Languagelocale.class, cp -> new LanguagelocaleRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public KnowledgearticleCollectionRequest knowledgearticle_languagelocaleid() {
return new KnowledgearticleCollectionRequest(contextPath.addSegment("knowledgearticle_languagelocaleid"));
}
public KnowledgearticleRequest knowledgearticle_languagelocaleid(String knowledgearticleid) {
return new KnowledgearticleRequest(contextPath.addSegment("knowledgearticle_languagelocaleid").addKeys(new NameValue(knowledgearticleid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy