Package org.jdesktop.wonderland.modules.xremwin.common.message

Examples of org.jdesktop.wonderland.modules.xremwin.common.message.SecretRequestMessage


     * is not authorized to access the given cell
     */
    public SecretKey getSecret(BigInteger clientID, CellID cellID) {
        ResponseMessage rm;
        try {
            rm = sendAndWait(new SecretRequestMessage(clientID, cellID));
        } catch (InterruptedException ie) {
            AppXrw.logger.log(Level.WARNING, "Get key interruped", ie);
            return null;
        }

View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.xremwin.common.message.SecretRequestMessage

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.