Drive API v2 (revision 47)



Uses of Class
com.google.api.services.drive.model.Permission

Packages that use Permission
com.google.api.services.drive   
com.google.api.services.drive.model   
 

Uses of Permission in com.google.api.services.drive
 

Methods in com.google.api.services.drive with parameters of type Permission
 Drive.Permissions.Insert Drive.Permissions.insert(java.lang.String fileId, Permission content)
          Inserts a permission for a file.
 Drive.Permissions.Patch Drive.Permissions.patch(java.lang.String fileId, java.lang.String permissionId, Permission content)
          Updates a permission.
 Drive.Permissions.Update Drive.Permissions.update(java.lang.String fileId, java.lang.String permissionId, Permission content)
          Updates a permission.
 

Uses of Permission in com.google.api.services.drive.model
 

Methods in com.google.api.services.drive.model that return Permission
 Permission File.getUserPermission()
          The permissions for the authenticated user on this file.
 Permission Permission.setAdditionalRoles(java.util.List<java.lang.String> additionalRoles)
          Additional roles for this user.
 Permission Permission.setAuthKey(java.lang.String authKey)
          The authkey parameter required for this permission.
 Permission Permission.setEtag(java.lang.String etag)
          The ETag of the permission.
 Permission Permission.setId(java.lang.String id)
          The ID of the permission.
 Permission Permission.setKind(java.lang.String kind)
          This is always drive#permission.
 Permission Permission.setName(java.lang.String name)
          The name for this permission.
 Permission Permission.setPhotoLink(java.lang.String photoLink)
          A link to the profile photo, if available.
 Permission Permission.setRole(java.lang.String role)
          The primary role for this user.
 Permission Permission.setSelfLink(java.lang.String selfLink)
          A link back to this permission.
 Permission Permission.setType(java.lang.String type)
          The account type.
 Permission Permission.setValue(java.lang.String value)
          The email address or domain name for the entity.
 Permission Permission.setWithLink(java.lang.Boolean withLink)
          Whether the link is required for this permission.
 

Methods in com.google.api.services.drive.model that return types with arguments of type Permission
 java.util.List<Permission> PermissionList.getItems()
          The actual list of permissions.
 

Methods in com.google.api.services.drive.model with parameters of type Permission
 File File.setUserPermission(Permission userPermission)
          The permissions for the authenticated user on this file.
 

Method parameters in com.google.api.services.drive.model with type arguments of type Permission
 PermissionList PermissionList.setItems(java.util.List<Permission> items)
          The actual list of permissions.