Skip to content

Commit

Permalink
Added BeanManagerProvider for default ServletContainer JNDI location …
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree authored and pmuir committed Aug 12, 2010
1 parent 5117d59 commit ec4c568
Showing 1 changed file with 41 additions and 0 deletions.
@@ -0,0 +1,41 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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 org.jboss.weld.extensions.beanManager;

import javax.enterprise.inject.spi.Extension;

/**
* A provider that searches the ServletContainer jndi path for a BeanManager
* entry as specified in the Weld docs.
*
* @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a>
*/
class ServletContainerJndiBeanManagerProvider extends AbstractJndiBeanManagerProvider implements Extension
{

@Override
protected String getLocation()
{
return "java:comp/env/BeanManager";
}

public int getPrecedence()
{
return 10;
}

}

0 comments on commit ec4c568

Please sign in to comment.