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

com.dell.cpsd.common.rabbitmq.context.ApplicationConfiguration Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/**
 * Copyright © 2017 Dell Inc. or its subsidiaries.  All Rights Reserved.
 * Dell EMC Confidential/Proprietary Information
 */

package com.dell.cpsd.common.rabbitmq.context;

/**
 * 

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

* * @since SINCE-TBD */ public class ApplicationConfiguration { private final String applicationName; private final String instanceUuid; private final String hostName; public ApplicationConfiguration(String applicationName, String instanceUuid, String hostName) { this.applicationName = applicationName; this.instanceUuid = instanceUuid; this.hostName = hostName; } public String getApplicationName() { return applicationName; } public String getInstanceUuid() { return instanceUuid; } public String getHostName() { return hostName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy