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

com.microsoft.graph.requests.extensions.GroupSettingCollectionRequest Maven / Gradle / Ivy

There is a newer version: 3.0.61
Show newest version
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All Rights Reserved.  Licensed under the MIT License.  See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.requests.extensions;

import com.microsoft.graph.concurrency.*;
import com.microsoft.graph.core.*;
import com.microsoft.graph.models.extensions.*;
import com.microsoft.graph.models.generated.*;
import com.microsoft.graph.http.*;
import com.microsoft.graph.requests.extensions.*;
import com.microsoft.graph.options.*;
import com.microsoft.graph.serializer.*;

import java.util.Arrays;
import java.util.EnumSet;

// **NOTE** This file was generated by a tool and any changes will be overwritten.

/**
 * The class for the Group Setting Collection Request.
 */
public class GroupSettingCollectionRequest extends BaseCollectionRequest implements IGroupSettingCollectionRequest {

    /**
     * The request builder for this collection of GroupSetting
     *
     * @param requestUrl     the request URL
     * @param client         the service client
     * @param requestOptions the options for this request
     */
    public GroupSettingCollectionRequest(final String requestUrl, IBaseClient client, final java.util.List requestOptions) {
        super(requestUrl, client, requestOptions, GroupSettingCollectionResponse.class, IGroupSettingCollectionPage.class);
    }

    public void get(final ICallback callback) {
        final IExecutors executors = getBaseRequest().getClient().getExecutors();
        executors.performOnBackground(new Runnable() {
           @Override
           public void run() {
                try {
                    executors.performOnForeground(get(), callback);
                } catch (final ClientException e) {
                    executors.performOnForeground(e, callback);
                }
           }
        });
    }

    public IGroupSettingCollectionPage get() throws ClientException {
        final GroupSettingCollectionResponse response = send();
        return buildFromResponse(response);
    }

    public void post(final GroupSetting newGroupSetting, final ICallback callback) {
        final String requestUrl = getBaseRequest().getRequestUrl().toString();
        new GroupSettingRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
            .buildRequest(getBaseRequest().getOptions())
            .post(newGroupSetting, callback);
    }

    public GroupSetting post(final GroupSetting newGroupSetting) throws ClientException {
        final String requestUrl = getBaseRequest().getRequestUrl().toString();
        return new GroupSettingRequestBuilder(requestUrl, getBaseRequest().getClient(), /* Options */ null)
            .buildRequest(getBaseRequest().getOptions())
            .post(newGroupSetting);
    }

    /**
     * Sets the expand clause for the request
     *
     * @param value the expand clause
     * @return the updated request
     */
    public IGroupSettingCollectionRequest expand(final String value) {
        addQueryOption(new QueryOption("$expand", value));
        return (GroupSettingCollectionRequest)this;
    }

    /**
     * Sets the select clause for the request
     *
     * @param value the select clause
     * @return the updated request
     */
    public IGroupSettingCollectionRequest select(final String value) {
        addQueryOption(new QueryOption("$select", value));
        return (GroupSettingCollectionRequest)this;
    }

    /**
     * Sets the top value for the request
     *
     * @param value the max number of items to return
     * @return the updated request
     */
    public IGroupSettingCollectionRequest top(final int value) {
        addQueryOption(new QueryOption("$top", value + ""));
        return (GroupSettingCollectionRequest)this;
    }

    public IGroupSettingCollectionPage buildFromResponse(final GroupSettingCollectionResponse response) {
        final IGroupSettingCollectionRequestBuilder builder;
        if (response.nextLink != null) {
            builder = new GroupSettingCollectionRequestBuilder(response.nextLink, getBaseRequest().getClient(), /* options */ null);
        } else {
            builder = null;
        }
        final GroupSettingCollectionPage page = new GroupSettingCollectionPage(response, builder);
        page.setRawObject(response.getSerializer(), response.getRawObject());
        return page;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy