当前位置: 首页>>代码示例>>Java>>正文


Java User.getConnectionPermissions方法代码示例

本文整理汇总了Java中org.apache.guacamole.net.auth.User.getConnectionPermissions方法的典型用法代码示例。如果您正苦于以下问题:Java User.getConnectionPermissions方法的具体用法?Java User.getConnectionPermissions怎么用?Java User.getConnectionPermissions使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.guacamole.net.auth.User的用法示例。


在下文中一共展示了User.getConnectionPermissions方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getConnectionParameters

import org.apache.guacamole.net.auth.User; //导入方法依赖的package包/类
/**
 * Retrieves the parameters associated with a single connection.
 * 
 * @return
 *     A map of parameter name/value pairs.
 *
 * @throws GuacamoleException
 *     If an error occurs while retrieving the connection parameters.
 */
@GET
@Path("parameters")
public Map<String, String> getConnectionParameters()
        throws GuacamoleException {

    User self = userContext.self();

    // Retrieve permission sets
    SystemPermissionSet systemPermissions = self.getSystemPermissions();
    ObjectPermissionSet connectionPermissions = self.getConnectionPermissions();

    // Deny access if adminstrative or update permission is missing
    String identifier = connection.getIdentifier();
    if (!systemPermissions.hasPermission(SystemPermission.Type.ADMINISTER)
     && !connectionPermissions.hasPermission(ObjectPermission.Type.UPDATE, identifier))
        throw new GuacamoleSecurityException("Permission to read connection parameters denied.");

    // Retrieve connection configuration
    GuacamoleConfiguration config = connection.getConfiguration();

    // Return parameter map
    return config.getParameters();

}
 
开发者ID:apache,项目名称:guacamole-client,代码行数:34,代码来源:ConnectionResource.java

示例2: ConnectionGroupTree

import org.apache.guacamole.net.auth.User; //导入方法依赖的package包/类
/**
 * Creates a new connection group tree using the given connection group as
 * the tree root.
 *
 * @param userContext
 *     The context of the user obtaining the connection group tree.
 *
 * @param root
 *     The connection group to use as the root of this connection group
 *     tree.
 * 
 * @param permissions
 *     If specified and non-empty, limit the contents of the tree to only
 *     those connections for which the current user has any of the given
 *     permissions. Otherwise, all visible connections are returned.
 *     Connection groups are unaffected by this parameter.
 *
 * @throws GuacamoleException
 *     If an error occurs while retrieving the tree of connection groups
 *     and their descendants.
 */
public ConnectionGroupTree(UserContext userContext, ConnectionGroup root,
        List<ObjectPermission.Type> permissions) throws GuacamoleException {

    // Store root of tree
    this.rootAPIGroup = new APIConnectionGroup(root);
    retrievedGroups.put(root.getIdentifier(), this.rootAPIGroup);

    // Store user's current permissions
    User self = userContext.self();
    this.connectionPermissions = self.getConnectionPermissions();
    this.sharingProfilePermissions = self.getSharingProfilePermissions();

    // Store required directories
    this.connectionDirectory = userContext.getConnectionDirectory();
    this.connectionGroupDirectory = userContext.getConnectionGroupDirectory();
    this.sharingProfileDirectory = userContext.getSharingProfileDirectory();

    // Add all descendants
    addConnectionGroupDescendants(Collections.singleton(root), permissions);
    
}
 
开发者ID:apache,项目名称:guacamole-client,代码行数:43,代码来源:ConnectionGroupTree.java


注:本文中的org.apache.guacamole.net.auth.User.getConnectionPermissions方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。