Source Code Cross Referenced for AttribFlags.java in  » Net » Ganymed-SSH-2 » ch » ethz » ssh2 » sftp » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » Ganymed SSH 2 » ch.ethz.ssh2.sftp 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package ch.ethz.ssh2.sftp;
002:
003:        /**
004:         * 
005:         * Attribute Flags. The 'valid-attribute-flags' field in
006:         * the SFTP ATTRS data type specifies which of the fields are actually present.
007:         *
008:         * @author Christian Plattner, plattner@inf.ethz.ch
009:         * @version $Id: AttribFlags.java,v 1.2 2006/08/02 12:05:00 cplattne Exp $
010:         *
011:         */
012:        public class AttribFlags {
013:            /**
014:             * Indicates that the 'allocation-size' field is present.
015:             */
016:            public static final int SSH_FILEXFER_ATTR_SIZE = 0x00000001;
017:
018:            /** Protocol version 6:
019:             * 0x00000002 was used in a previous version of this protocol.
020:             * It is now a reserved value and MUST NOT appear in the mask.
021:             * Some future version of this protocol may reuse this value.
022:             */
023:            public static final int SSH_FILEXFER_ATTR_V3_UIDGID = 0x00000002;
024:
025:            /**
026:             * Indicates that the 'permissions' field is present.
027:             */
028:            public static final int SSH_FILEXFER_ATTR_PERMISSIONS = 0x00000004;
029:
030:            /**
031:             * Indicates that the 'atime' and 'mtime' field are present
032:             * (protocol v3).
033:             */
034:            public static final int SSH_FILEXFER_ATTR_V3_ACMODTIME = 0x00000008;
035:
036:            /**
037:             * Indicates that the 'atime' field is present.
038:             */
039:            public static final int SSH_FILEXFER_ATTR_ACCESSTIME = 0x00000008;
040:
041:            /**
042:             * Indicates that the 'createtime' field is present.
043:             */
044:            public static final int SSH_FILEXFER_ATTR_CREATETIME = 0x00000010;
045:
046:            /**
047:             * Indicates that the 'mtime' field is present.
048:             */
049:            public static final int SSH_FILEXFER_ATTR_MODIFYTIME = 0x00000020;
050:
051:            /**
052:             * Indicates that the 'acl' field is present.
053:             */
054:            public static final int SSH_FILEXFER_ATTR_ACL = 0x00000040;
055:
056:            /**
057:             * Indicates that the 'owner' and 'group' fields are present.
058:             */
059:            public static final int SSH_FILEXFER_ATTR_OWNERGROUP = 0x00000080;
060:
061:            /**
062:             * Indicates that additionally to the 'atime', 'createtime',
063:             * 'mtime' and 'ctime' fields (if present), there is also
064:             * 'atime-nseconds', 'createtime-nseconds',  'mtime-nseconds' 
065:             * and 'ctime-nseconds'.
066:             */
067:            public static final int SSH_FILEXFER_ATTR_SUBSECOND_TIMES = 0x00000100;
068:
069:            /**
070:             * Indicates that the 'attrib-bits' and 'attrib-bits-valid'
071:             * fields are present.
072:             */
073:            public static final int SSH_FILEXFER_ATTR_BITS = 0x00000200;
074:
075:            /**
076:             * Indicates that the 'allocation-size' field is present.
077:             */
078:            public static final int SSH_FILEXFER_ATTR_ALLOCATION_SIZE = 0x00000400;
079:
080:            /**
081:             * Indicates that the 'text-hint' field is present.
082:             */
083:            public static final int SSH_FILEXFER_ATTR_TEXT_HINT = 0x00000800;
084:
085:            /**
086:             * Indicates that the 'mime-type' field is present.
087:             */
088:            public static final int SSH_FILEXFER_ATTR_MIME_TYPE = 0x00001000;
089:
090:            /**
091:             * Indicates that the 'link-count' field is present.
092:             */
093:            public static final int SSH_FILEXFER_ATTR_LINK_COUNT = 0x00002000;
094:
095:            /**
096:             * Indicates that the 'untranslated-name' field is present.
097:             */
098:            public static final int SSH_FILEXFER_ATTR_UNTRANSLATED_NAME = 0x00004000;
099:
100:            /**
101:             * Indicates that the 'ctime' field is present.
102:             */
103:            public static final int SSH_FILEXFER_ATTR_CTIME = 0x00008000;
104:
105:            /**
106:             * Indicates that the 'extended-count' field (and probablby some
107:             * 'extensions') is present.
108:             */
109:            public static final int SSH_FILEXFER_ATTR_EXTENDED = 0x80000000;
110:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.