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

com.icthh.xm.commons.tenantendpoint.MockTenantApiConfiguration Maven / Gradle / Ivy

There is a newer version: 4.0.17
Show newest version
package com.icthh.xm.commons.tenantendpoint;

import com.icthh.xm.commons.gen.api.TenantsApiDelegate;
import com.icthh.xm.commons.gen.model.Tenant;
import org.apache.commons.lang3.NotImplementedException;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.ResponseEntity;

import java.util.List;

@Configuration
public class MockTenantApiConfiguration  {

    private static final String ERROR_MESSAGE = "Tenant api controller is not implemented for this microservice";

    @ConditionalOnMissingBean(TenantsApiDelegate.class)
    @Bean
    public TenantsApiDelegate tenantsApiDelegate() {
        return new TenantsApiDelegate() {
            @Override
            public ResponseEntity addTenant(Tenant body) {
                throw new NotImplementedException(ERROR_MESSAGE);
            }

            @Override
            public ResponseEntity deleteTenant(String tenantKey) {
                throw new NotImplementedException(ERROR_MESSAGE);
            }

            @Override
            public ResponseEntity> getAllTenantInfo() {
                throw new NotImplementedException(ERROR_MESSAGE);
            }

            @Override
            public ResponseEntity getTenant(String tenantKey) {
                throw new NotImplementedException(ERROR_MESSAGE);
            }

            @Override
            public ResponseEntity manageTenant(String tenantKey, String body) {
                throw new NotImplementedException(ERROR_MESSAGE);
            }
        };
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy