microsoft.dynamics.crm.entity.collection.request.PluginassemblyCollectionRequest 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.Pluginassembly;
import microsoft.dynamics.crm.entity.request.PluginassemblyRequest;
import microsoft.dynamics.crm.entity.request.PlugintypeRequest;
import microsoft.dynamics.crm.schema.SchemaInfo;
public class PluginassemblyCollectionRequest extends CollectionPageEntityRequest{
protected ContextPath contextPath;
public PluginassemblyCollectionRequest(ContextPath contextPath) {
super(contextPath, Pluginassembly.class, cp -> new PluginassemblyRequest(cp), SchemaInfo.INSTANCE);
this.contextPath = contextPath;
}
public PlugintypeCollectionRequest pluginassembly_plugintype() {
return new PlugintypeCollectionRequest(contextPath.addSegment("pluginassembly_plugintype"));
}
public PlugintypeRequest pluginassembly_plugintype(String plugintypeid) {
return new PlugintypeRequest(contextPath.addSegment("pluginassembly_plugintype").addKeys(new NameValue(plugintypeid.toString())));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy