Return-Path: X-Original-To: apmail-openejb-commits-archive@www.apache.org Delivered-To: apmail-openejb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 974BA4F7A for ; Thu, 23 Jun 2011 11:56:41 +0000 (UTC) Received: (qmail 95038 invoked by uid 500); 23 Jun 2011 11:56:41 -0000 Delivered-To: apmail-openejb-commits-archive@openejb.apache.org Received: (qmail 95002 invoked by uid 500); 23 Jun 2011 11:56:41 -0000 Mailing-List: contact commits-help@openejb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openejb.apache.org Delivered-To: mailing list commits@openejb.apache.org Received: (qmail 94995 invoked by uid 99); 23 Jun 2011 11:56:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2011 11:56:41 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 23 Jun 2011 11:56:39 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DDCA9238885D for ; Thu, 23 Jun 2011 11:56:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1138841 - /openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/AbstractRouter.java Date: Thu, 23 Jun 2011 11:56:19 -0000 To: commits@openejb.apache.org From: rmannibucau@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110623115619.DDCA9238885D@eris.apache.org> Author: rmannibucau Date: Thu Jun 23 11:56:19 2011 New Revision: 1138841 URL: http://svn.apache.org/viewvc?rev=1138841&view=rev Log: adding AbstractRouter for dynamic data source routing Added: openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/AbstractRouter.java Added: openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/AbstractRouter.java URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/AbstractRouter.java?rev=1138841&view=auto ============================================================================== --- openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/AbstractRouter.java (added) +++ openejb/trunk/openejb3/container/openejb-core/src/main/java/org/apache/openejb/resource/jdbc/AbstractRouter.java Thu Jun 23 11:56:19 2011 @@ -0,0 +1,45 @@ +/** + * + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 org.apache.openejb.resource.jdbc; + +import org.apache.openejb.loader.SystemInstance; +import org.apache.openejb.spi.ContainerSystem; + +import javax.naming.Context; +import javax.naming.NamingException; + +/** + * @author Romain Manni-Bucau + */ +public abstract class AbstractRouter implements Router { + private static final String OPENEJB_RESOURCE = "openejb:Resource/"; + private Context ctx; + + public AbstractRouter() { + ContainerSystem containerSystem = SystemInstance.get().getComponent(ContainerSystem.class); + ctx = containerSystem.getJNDIContext(); + } + + public Object getJndiResource(String name) throws NamingException { + return ctx.lookup(name); + } + + public Object getOpenEJBResource(String name) throws NamingException { + return getJndiResource(OPENEJB_RESOURCE + name); + } +}