Skip to content

Commit

Permalink
WELD-1909 Use camel case in class names
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Apr 8, 2015
1 parent fd09824 commit 7832cea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -30,7 +30,7 @@
* @author Jozef Hartinger
*
*/
public class WeldEJBModule implements WeldModule {
public class WeldEjbModule implements WeldModule {

private final EjbSupport ejbSupport = new EjbSupportImpl();

Expand All @@ -43,7 +43,7 @@ public String getName() {
public void postServiceRegistration(PostServiceRegistrationContext ctx) {
ctx.getServices().add(EjbSupport.class, ejbSupport);
ctx.getServices().add(SLSBInvocationInjectionPoint.class, new SLSBInvocationInjectionPoint());
ctx.registerPlugableValidator(new WeldEJBValidator());
ctx.registerPlugableValidator(new WeldEjbValidator());
ctx.getServices().get(ResourceInjectionFactory.class).addResourceInjectionProcessor(new EjbResourceInjectionProcessor());
}

Expand Down
Expand Up @@ -28,7 +28,7 @@
import org.jboss.weld.manager.BeanManagerImpl;
import org.jboss.weld.module.PlugableValidator;

class WeldEJBValidator implements PlugableValidator {
class WeldEjbValidator implements PlugableValidator {

public void validateInjectionPointForDefinitionErrors(InjectionPoint ij, Bean<?> bean, BeanManagerImpl beanManager) {
// check that UserTransaction is not injected into a SessionBean with container-managed transactions
Expand Down
@@ -1 +1 @@
org.jboss.weld.ejb.WeldEJBModule
org.jboss.weld.ejb.WeldEjbModule

0 comments on commit 7832cea

Please sign in to comment.