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

com.sap.cloud.sdk.s4hana.datamodel.odata.services.DefaultControllingAreaService Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.s4hana.datamodel.odata.services;

import javax.annotation.Nonnull;
import javax.inject.Named;

import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.controllingarea.ControllingAreaByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.controllingarea.ControllingAreaFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.controllingarea.batch.DefaultControllingAreaServiceBatch;

/**
 * 

* This service enables you to display controlling area master data to be consumed in SAP Fiori apps and on other user * interfaces. *

*

* Business * Documentation *

*

* Reference: SAP * API Business Hub *

*

Details:

* * * * * * * * * * * * * * * * * * * * * *
OData Service:API_CONTROLLINGAREA_SRV
API Version:1
Communication Scenario:SAP Analytics Cloud for Planning Integration (SAP_COM_0087)
Scope Items:Integration between SAP S/4HANA Cloud and SAP Analytics Cloud * (1YB)
Authentication Methods:Basic, x509
* */ @Named( "com.sap.cloud.sdk.s4hana.datamodel.odata.services.DefaultControllingAreaService" ) public class DefaultControllingAreaService implements ControllingAreaService { @Nonnull private final String servicePath; /** * Creates a service using {@link ControllingAreaService#DEFAULT_SERVICE_PATH} to send the requests. * */ public DefaultControllingAreaService() { servicePath = ControllingAreaService.DEFAULT_SERVICE_PATH; } /** * Creates a service using the provided service path to send the requests. *

* Used by the fluent {@link #withServicePath(String)} method. * */ private DefaultControllingAreaService( @Nonnull final String servicePath ) { this.servicePath = servicePath; } @Override @Nonnull public DefaultControllingAreaService withServicePath( @Nonnull final String servicePath ) { return new DefaultControllingAreaService(servicePath); } /** * {@inheritDoc} * */ @Override @Nonnull public DefaultControllingAreaServiceBatch batch() { return new DefaultControllingAreaServiceBatch(this); } @Override @Nonnull public ControllingAreaFluentHelper getAllControllingArea() { return new ControllingAreaFluentHelper(servicePath); } @Override @Nonnull public ControllingAreaByKeyFluentHelper getControllingAreaByKey( final String controllingArea ) { return new ControllingAreaByKeyFluentHelper(servicePath, controllingArea); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy