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

odata.msgraph.client.beta.entity.collection.request.Windows81TrustedRootCertificateCollectionRequest Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package odata.msgraph.client.beta.entity.collection.request;

import com.github.davidmoten.odata.client.CollectionPageEntityRequest;
import com.github.davidmoten.odata.client.ContextPath;

import java.lang.Object;
import java.util.Optional;

import odata.msgraph.client.beta.entity.Windows81TrustedRootCertificate;
import odata.msgraph.client.beta.entity.request.Windows81TrustedRootCertificateRequest;

public class Windows81TrustedRootCertificateCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public Windows81TrustedRootCertificateCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, Windows81TrustedRootCertificate.class, cp -> new Windows81TrustedRootCertificateRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

}