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

com.dell.cpsd.rcm.evaluation.client.i18n.RFESMessageBundle Maven / Gradle / Ivy

Go to download

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.i18n;

import java.util.ListResourceBundle;

/**
 * This is the resource bundle for service client.
 * 
 * 

* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved. * Dell EMC Confidential/Proprietary Information *

* * @version 1.0 * * @since SINCE-TBD */ public class RFESMessageBundle extends ListResourceBundle { /* * The content of this message resource bundle. */ private static final Object[][] CONTENTS = { {"RFES2001E", "RFES2001E Rabbit consumer [{0}] threw an error. Reason [{1}]"}, {"RFES2002E", "RFES2002E Unable to consume message after retries. Reason [{0}]"}, {"RFES2003I", "RFES2003I The service message producer routing key : [{0}]"}, {"RFES2004I", "RFES2004I The service message consumer queue name : [{0}]"}, {"RFES2005I", "RFES2005I The service message consumer binding key: [{0}]"}, {"RFES2006E", "RFES2006E Error publishing message [{0}]. Reason [{1}]"}, {"RFES2007W", "RFES2007W The service message to handle is null."}, {"RFES2008W", "RFES2008W The service error message to handle is null."}, {"RFES2009W", "RFES2009W The service message handler is not set."}, {"RFES2010E", "RFES2010E The service request [{0}] has timed out after [{1}] msec."}, {"RFES2011E", "RFES2011E Could not publish the message. Reason [{0}]"}, {"RFES2012E", "RFES2012E Unexpected error on callback [{0}]. Reason [{1}]"}, {"RFES2013E", "RFES2013E ."}, {"RFES2014E", "RFES2014E ."}, {"RFES2015E", "RFES2015E ."}, {"RFES2016E", "RFES2016E The client is shutting down. Requests are not being accepted."}, {"RFES2017E", "RFES2017E ."}, {"RFES2018I", "RFES2018I Shutting down the scheduled executor service."}, {"RFES2019I", "RFES2019I Waiting for pending requests to complete."}, {"RFES2020I", "RFES2020I ."}, {"RFES2021E", "RFES2021E Unexpected error on request timeout checking. Reason [{0}]"} }; /** * RFESMessageBundle constructor. * * @since SINCE-TBD */ public RFESMessageBundle() { super(); } /** * This returns the messages for this resource bundle. * * @return The messages for this resource bundle. * * @since SINCE-TBD */ @Override protected Object[][] getContents() { return CONTENTS; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy