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

odata.msgraph.client.beta.entity.collection.request.MicrosoftTunnelSiteCollectionRequest 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 com.github.davidmoten.odata.client.NameValue;

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

import odata.msgraph.client.beta.entity.MicrosoftTunnelSite;
import odata.msgraph.client.beta.entity.request.MicrosoftTunnelServerRequest;
import odata.msgraph.client.beta.entity.request.MicrosoftTunnelSiteRequest;

public class MicrosoftTunnelSiteCollectionRequest extends CollectionPageEntityRequest{

    protected ContextPath contextPath;

    public MicrosoftTunnelSiteCollectionRequest(ContextPath contextPath, Optional value) {
        super(contextPath, MicrosoftTunnelSite.class, cp -> new MicrosoftTunnelSiteRequest(cp, Optional.empty()), value);
        this.contextPath = contextPath;
    }

    public MicrosoftTunnelServerCollectionRequest microsoftTunnelServers() {
        return new MicrosoftTunnelServerCollectionRequest(contextPath.addSegment("microsoftTunnelServers"), Optional.empty());
    }

    public MicrosoftTunnelServerRequest microsoftTunnelServers(String id) {
        return new MicrosoftTunnelServerRequest(contextPath.addSegment("microsoftTunnelServers").addKeys(new NameValue(id.toString())), Optional.empty());
    }

}