public class

AttribPermissions

extends Object
java.lang.Object
   ↳ com.trilead.ssh2.sftp.AttribPermissions

Class Overview

Permissions for the 'permissions' field in the SFTP ATTRS data type.

"The 'permissions' field contains a bit mask specifying file permissions. These permissions correspond to the st_mode field of the stat structure defined by POSIX [IEEE.1003-1.1996]."

Summary

Constants
int S_IRGRP
int S_IROTH
int S_IRUSR
int S_ISGID
int S_ISUID
int S_ISVTX
int S_IWGRP
int S_IWOTH
int S_IWUSR
int S_IXGRP
int S_IXOTH
int S_IXUSR
Public Constructors
AttribPermissions()
[Expand]
Inherited Methods
From class java.lang.Object

Constants

public static final int S_IRGRP

Constant Value: 32 (0x00000020)

public static final int S_IROTH

Constant Value: 4 (0x00000004)

public static final int S_IRUSR

Constant Value: 256 (0x00000100)

public static final int S_ISGID

Constant Value: 1024 (0x00000400)

public static final int S_ISUID

Constant Value: 2048 (0x00000800)

public static final int S_ISVTX

Constant Value: 512 (0x00000200)

public static final int S_IWGRP

Constant Value: 16 (0x00000010)

public static final int S_IWOTH

Constant Value: 2 (0x00000002)

public static final int S_IWUSR

Constant Value: 128 (0x00000080)

public static final int S_IXGRP

Constant Value: 8 (0x00000008)

public static final int S_IXOTH

Constant Value: 1 (0x00000001)

public static final int S_IXUSR

Constant Value: 64 (0x00000040)

Public Constructors

public AttribPermissions ()