
com.sap.cloud.sdk.s4hana.datamodel.odata.services.DefaultFunctionalAreaService 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.functionalarea.FunctionalAreaByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.functionalarea.FunctionalAreaFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.functionalarea.FunctionalAreaTextByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.functionalarea.FunctionalAreaTextFluentHelper;
/**
*
* This service enables you to display functional area master data to be consumed in SAP Fiori apps and on other user
* interfaces.
*
*
*
* Reference: SAP
* API Business Hub
*
* Details:
*
*
* OData Service:
* API_FUNCTIONALAREA_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.DefaultFunctionalAreaService" )
public class DefaultFunctionalAreaService implements FunctionalAreaService
{
@Nonnull
private final String servicePath;
/**
* Creates a service using {@link FunctionalAreaService#DEFAULT_SERVICE_PATH} to send the requests.
*
*/
public DefaultFunctionalAreaService()
{
servicePath = FunctionalAreaService.DEFAULT_SERVICE_PATH;
}
/**
* Creates a service using the provided service path to send the requests.
*
* Used by the fluent {@link #withServicePath(String)} method.
*
*/
private DefaultFunctionalAreaService( @Nonnull final String servicePath )
{
this.servicePath = servicePath;
}
@Override
@Nonnull
public DefaultFunctionalAreaService withServicePath( @Nonnull final String servicePath )
{
return new DefaultFunctionalAreaService(servicePath);
}
@Override
@Nonnull
public FunctionalAreaFluentHelper getAllFunctionalArea()
{
return new FunctionalAreaFluentHelper(servicePath);
}
@Override
@Nonnull
public FunctionalAreaByKeyFluentHelper getFunctionalAreaByKey( final String functionalArea )
{
return new FunctionalAreaByKeyFluentHelper(servicePath, functionalArea);
}
@Override
@Nonnull
public FunctionalAreaTextFluentHelper getAllFunctionalAreaText()
{
return new FunctionalAreaTextFluentHelper(servicePath);
}
@Override
@Nonnull
public
FunctionalAreaTextByKeyFluentHelper
getFunctionalAreaTextByKey( final String language, final String functionalArea )
{
return new FunctionalAreaTextByKeyFluentHelper(servicePath, language, functionalArea);
}
}