All Downloads are FREE. Search and download functionalities are using the official Maven repository.

microsoft.dynamics.crm.entity.collection.request.LanguagelocaleCollectionRequest Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
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