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

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

// ------------------------------------------------------------------------------
// 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 Role Definition With Reference Request.
 */
public class RoleDefinitionWithReferenceRequest extends BaseRequest implements IRoleDefinitionWithReferenceRequest {

    /**
     * The request for the RoleDefinition
     *
     * @param requestUrl     the request URL
     * @param client         the service client
     * @param requestOptions the options for this request
     */
    public RoleDefinitionWithReferenceRequest(String requestUrl, IBaseClient client, java.util.List requestOptions) {
        super(requestUrl, client, requestOptions, RoleDefinition.class);
    }

    public void post(final RoleDefinition newRoleDefinition, final IJsonBackedObject payload, final ICallback callback) {
        send(HttpMethod.POST, callback, payload);
    }

    public RoleDefinition post(final RoleDefinition newRoleDefinition, final IJsonBackedObject payload) throws ClientException {
        IJsonBackedObject response = send(HttpMethod.POST, payload);
        if (response != null){
            return newRoleDefinition;
        }
        return null;
    }

    public void get(final ICallback callback) {
        send(HttpMethod.GET, callback, null);
    }

    public RoleDefinition get() throws ClientException {
       return send(HttpMethod.GET, null);
    }

	public void delete(final ICallback callback) {
		send(HttpMethod.DELETE, callback, null);
	}

	public void delete() throws ClientException {
		send(HttpMethod.DELETE, null);
	}

	public void patch(final RoleDefinition sourceRoleDefinition, final ICallback callback) {
		send(HttpMethod.PATCH, callback, sourceRoleDefinition);
	}

	public RoleDefinition patch(final RoleDefinition sourceRoleDefinition) throws ClientException {
		return send(HttpMethod.PATCH, sourceRoleDefinition);
	}


    /**
     * Sets the select clause for the request
     *
     * @param value the select clause
     * @return the updated request
     */
    public IRoleDefinitionWithReferenceRequest select(final String value) {
        getQueryOptions().add(new QueryOption("$select", value));
        return (IRoleDefinitionWithReferenceRequest)this;
    }

    /**
     * Sets the expand clause for the request
     *
     * @param value the expand clause
     * @return the updated request
     */
    public IRoleDefinitionWithReferenceRequest expand(final String value) {
        getQueryOptions().add(new QueryOption("$expand", value));
        return (RoleDefinitionWithReferenceRequest)this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy