Package org.apache.openejb.assembler.util

Examples of org.apache.openejb.assembler.util.User


            if (this.context == null) {
                throw new UserNotAuthenticated();
            }

            try {
                final User user = (User) this.context.lookup("openejb/UserBusinessRemote");
                user.adminOnly();
            } catch (Exception e) {
                throw new UserNotAuthenticated(e);
            }
        }
View Full Code Here


            if (this.context == null) {
                return null;
            }

            try {
                final User user = (User) this.context.lookup("openejb/UserBusinessRemote");
                return user.getUserName();
            } catch (Exception e) {
                throw new TomeeException(e);
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.openejb.assembler.util.User

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.