com.dell.cpsd.rcm.evaluation.client.IRcmEvaluationConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rcm-evaluation-service-api Show documentation
Show all versions of rcm-evaluation-service-api Show documentation
This repository contains the source code for the rcm evaluation service API.
Use this repository to share contracts between services so you can create POJOs using defined JSON schemas and to create message transformers for the RCM evaluation service.
The newest version!
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.rcm.evaluation.client;
import com.dell.cpsd.rcm.evaluation.client.amqp.consumer.IAmqpRcmEvaluationConsumer;
import com.dell.cpsd.rcm.evaluation.client.amqp.producer.IAmqpRcmEvaluationProducer;
/**
* This is the configuration for the service client.
*
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*
*
* @version 1.0
*
* @since SINCE-TBD
*/
public interface IRcmEvaluationConfiguration
{
/**
* This returns the IAmqpRcmEvaluationConsumer
that the manager
* uses.
*
* @return The IAmqpRcmEvaluationConsumer
that is used.
*
* @since 1.0
*/
public IAmqpRcmEvaluationConsumer getRcmEvaluationConsumer();
/**
* This returns the IAmqpRcmEvaluationProducer
that the manager
* uses.
*
* @return The IAmqpRcmEvaluationProducer
that is used.
*
* @since 1.0
*/
public IAmqpRcmEvaluationProducer getRcmEvaluationProducer();
}