com.centurylink.mdw.container.NamingProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mdw-common Show documentation
Show all versions of mdw-common Show documentation
MDW is a workflow framework specializing in microservice orchestration
/*
* Copyright (C) 2017 CenturyLink, Inc.
*
* 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.centurylink.mdw.container;
import java.rmi.Remote;
import javax.naming.NamingException;
/**
* JNDI-naming provider
*/
public interface NamingProvider {
public static final String TRANSACTION_MANAGER_SYSTEM_PROPERTY = "com.centurylink.mdw.transaction.manager";
// container names
String TOMCAT = "Tomcat";
// standard J2EE resource names
String JAVA_TRANSACTION_MANAGER = "javax.transaction.TransactionManager";
String JAVA_USER_TRANSACTION = "javax.transaction.UserTransaction";
public String qualifyServiceBeanName(String name);
public String qualifyJmsQueueName(String name);
public String qualifyJmsTopicName(String name);
public String getTransactionManagerName();
public String getUserTransactionName();
public int getServerPort() throws Exception;
public Object lookup(String hostPort, String name, Class> cls) throws NamingException;
public void bind(String name, Remote object) throws NamingException;
public void unbind(String name) throws NamingException;
}