/*
* Copyright 2012-2015, the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.flipkart.aesop.runtime.spring;
/**
* The <code>ClientRuntimeComponentContainer</code> class is a concrete subtype of the {@link RuntimeComponentContainer}
* used for managing Databus Http Client instances.
*
* @see org.trpr.platform.runtime.spi.component.ComponentContainer
* @author Regunath B
* @version 1.0, 08 Jan 2014
*/
public class ClientRuntimeComponentContainer extends RuntimeComponentContainer {
/**
* The file name containing Http Client beans
*/
public static final String CLIENT_CONFIG_FILE = "spring-client-config.xml";
/**
* The runtime module name
*/
public static final String RUNTIME_MODULE_NAME = "runtime-client";
/**
* Abstract method implementation.
* @see com.flipkart.aesop.runtime.spring.RuntimeComponentContainer#getRuntimeConfigFileName()
*/
public String getRuntimeConfigFileName() {
return ClientRuntimeComponentContainer.CLIENT_CONFIG_FILE;
}
/**
* Abstract method implementation.
* @see com.flipkart.aesop.runtime.spring.RuntimeComponentContainer#getRuntimeModuleName()
*/
public String getRuntimeModuleName() {
return ClientRuntimeComponentContainer.RUNTIME_MODULE_NAME;
}
}