Skip to content

Commit

Permalink
move facade beans to subpackage
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3524 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Aug 16, 2009
1 parent f4a4347 commit 4f1b79c
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 11 deletions.
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.webbeans.bean.builtin;
package org.jboss.webbeans.bean.builtin.facade;

import java.io.Serializable;
import java.lang.annotation.Annotation;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.webbeans.bean.builtin;
package org.jboss.webbeans.bean.builtin.facade;

import java.lang.annotation.Annotation;
import java.lang.reflect.ParameterizedType;
Expand All @@ -25,6 +25,7 @@
import javax.enterprise.inject.spi.InjectionPoint;

import org.jboss.webbeans.BeanManagerImpl;
import org.jboss.webbeans.bean.builtin.AbstractBuiltInBean;
import org.jboss.webbeans.log.Log;
import org.jboss.webbeans.log.Logging;

Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.webbeans.bean.builtin;
package org.jboss.webbeans.bean.builtin.facade;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.webbeans.bean.builtin;
package org.jboss.webbeans.bean.builtin.facade;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.webbeans.bean.builtin;
package org.jboss.webbeans.bean.builtin.facade;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
Expand Down
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.webbeans.bean.builtin;
package org.jboss.webbeans.bean.builtin.facade;

import java.io.Serializable;
import java.lang.annotation.Annotation;
Expand Down
Expand Up @@ -29,10 +29,10 @@
import org.jboss.webbeans.DefinitionException;
import org.jboss.webbeans.DeploymentException;
import org.jboss.webbeans.Validator;
import org.jboss.webbeans.bean.builtin.EventBean;
import org.jboss.webbeans.bean.builtin.InjectionPointBean;
import org.jboss.webbeans.bean.builtin.InstanceBean;
import org.jboss.webbeans.bean.builtin.ManagerBean;
import org.jboss.webbeans.bean.builtin.facade.EventBean;
import org.jboss.webbeans.bean.builtin.facade.InstanceBean;
import org.jboss.webbeans.bootstrap.api.Bootstrap;
import org.jboss.webbeans.bootstrap.api.Environments;
import org.jboss.webbeans.bootstrap.api.helpers.AbstractBootstrap;
Expand Down
2 changes: 1 addition & 1 deletion impl/src/main/java/org/jboss/webbeans/event/EventImpl.java
Expand Up @@ -26,7 +26,7 @@
import javax.enterprise.inject.TypeLiteral;

import org.jboss.webbeans.BeanManagerImpl;
import org.jboss.webbeans.bean.builtin.AbstractFacade;
import org.jboss.webbeans.bean.builtin.facade.AbstractFacade;
import org.jboss.webbeans.util.Strings;

/**
Expand Down
Expand Up @@ -24,8 +24,8 @@
import javax.enterprise.inject.spi.Bean;

import org.jboss.webbeans.BeanManagerImpl;
import org.jboss.webbeans.bean.builtin.EventBean;
import org.jboss.webbeans.bean.builtin.InstanceBean;
import org.jboss.webbeans.bean.builtin.facade.EventBean;
import org.jboss.webbeans.bean.builtin.facade.InstanceBean;
import org.jboss.webbeans.util.Beans;
import org.jboss.webbeans.util.Reflections;
import org.jboss.webbeans.util.collections.ConcurrentCache;
Expand Down

0 comments on commit 4f1b79c

Please sign in to comment.