Skip to content

Commit

Permalink
Merge pull request #181 from fjuma/EJBCLIENT-179
Browse files Browse the repository at this point in the history
[EJBCLIENT-179] Re-introduce an org.jboss.ejb.client.naming.ejb.ejbURLContextFactory class for compatibility purposes
  • Loading branch information
dmlloyd committed Dec 20, 2016
2 parents 5c3d710 + 1d63c79 commit 8fbcb75
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/org/jboss/ejb/_private/Logs.java
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,10 @@ public interface Logs extends BasicLogger {
@Message(id = 63, value = "EJB proxy is already stateful")
IllegalArgumentException ejbIsAlreadyStateful();

@LogMessage(level = Logger.Level.INFO)
@Message(id = 64, value = "org.jboss.ejb.client.naming.ejb.ejbURLContextFactory is deprecated; new applications should use org.wildfly.naming.client.WildFlyInitialContextFactory instead")
void ejbURLContextFactoryDeprecated();

// Proxy API errors

@Message(id = 100, value = "Object '%s' is not a valid proxy object")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2016, Red Hat Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.ejb.client.naming.ejb;


import javax.naming.Context;
import javax.naming.Name;
import javax.naming.spi.ObjectFactory;
import java.util.Hashtable;

import org.jboss.ejb._private.Logs;
import org.wildfly.naming.client.WildFlyInitialContextFactory;

/**
* Compatibility class.
*
* @deprecated Use {@link WildFlyInitialContextFactory} instead.
* @author <a href="mailto:fjuma@redhat.com">Farah Juma</a>
*/
public class ejbURLContextFactory implements ObjectFactory {
static {
Logs.MAIN.ejbURLContextFactoryDeprecated();
}

private final WildFlyInitialContextFactory delegate = new WildFlyInitialContextFactory();

public Object getObjectInstance(final Object obj, final Name name, final Context nameCtx, final Hashtable<?, ?> environment) throws Exception {
return delegate.getInitialContext(environment);
}
}

0 comments on commit 8fbcb75

Please sign in to comment.