This repository has been archived on 2025-12-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
tcommon-studio-se/org.talend.librariesmanager/resources/java/routines/system/api/ESBEndpointRegistry.java
2011-11-25 15:56:59 +00:00

28 lines
819 B
Java

/*******************************************************************************
* Copyright (c) 2011 Talend Inc. - www.talend.com
* All rights reserved.
*
* This program and the accompanying materials are made available
* under the terms of the Apache License v2.0
* which accompanies this distribution, and is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
******************************************************************************/
package routines.system.api;
/**
* Consumer callback to allow consumer components
* to send requests and receive responses
*/
public interface ESBEndpointRegistry {
/**
* This method will create consumer based on the
*
* @param endpoint
* @return
*/
public ESBConsumer createConsumer(ESBEndpointInfo endpoint);
}