Package org.uberfire.rpc.impl

Examples of org.uberfire.rpc.impl.SessionInfoImpl


    private SessionInfo sessionInfo;

    @PostConstruct
    public void onStartup() {
        this.sessionInfo = new SessionInfoImpl();
    }
View Full Code Here


    @Produces
    @RequestScoped
    @Default
    public static SessionInfo getSessionInfo() {
        return new SessionInfoImpl( RpcContext.getQueueSession().getSessionId(), SecurityFactory.getIdentity() );
    }
View Full Code Here

        }
        return sessionInfo;
    }

    private void setupSessionInfo() {
        sessionInfo = new SessionInfoImpl( identity );
    }
View Full Code Here

            user = "<system>";
        } else {
            user = context.getUser();
        }

        return new SessionInfoImpl( sessionId, new IdentityImpl( user ) );
    }
View Full Code Here

TOP

Related Classes of org.uberfire.rpc.impl.SessionInfoImpl

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.