KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > networkplaces > NetworkPlacesEventConstants


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.sslexplorer.networkplaces;
21
22 /**
23  * Constants used for event attributes
24  * @author James D Robinson <a HREF="mailto:james@3sp.com">&lt;james@3sp.com&gt;</a>
25  */

26 public class NetworkPlacesEventConstants {
27     /**
28      * VFS Uri
29      */

30     public static final String JavaDoc EVENT_ATTR_VFS_URI = "VfsUri";
31     
32     /**
33      * VFS Upload Source
34      */

35     public static final String JavaDoc EVENT_ATTR_VFS_UPLOAD_DESTINATION_URI = "VfsUploadDestinationUri";
36
37     /**
38      * VFS Upload Source
39      */

40     public static final String JavaDoc EVENT_ATTR_VFS_UPLOAD_DESTINATION_PATH = "VfsUploadDestinationPath";
41
42     /**
43      * VFS read only
44      */

45     public static final String JavaDoc EVENT_ATTR_VFS_READ_ONLY = "VfsReadOnly";
46
47     /**
48      * VFS show hidden
49      */

50     public static final String JavaDoc EVENT_ATTR_VFS_SHOW_HIDDEN = "VfsShowHidden";
51
52     /**
53      * VFS Allow recursive
54      */

55     public static final String JavaDoc EVENT_ATTR_VFS_ALLOW_RECURSIVE = "VfsAllowRecursive";
56
57     /**
58      * VFS no delete
59      */

60     public static final String JavaDoc EVENT_ATTR_VFS_NO_DELETE = "VfsNoDelete";
61
62     /**
63      * VFS path within the Uri
64      */

65     public static final String JavaDoc EVENT_ATTR_VFS_PATH = "VfsPath";
66     
67     /**
68      * VFS file name
69      */

70     public static final String JavaDoc EVENT_ATTR_VFS_FILE_NAME = "VfsFileName";
71     
72     /**
73      * VFS directory name
74      */

75     public static final String JavaDoc EVENT_ATTR_VFS_DIRECTORY_NAME = "VfsDirectoryName";
76
77     /**
78      * VFS is cut or copy operation
79      */

80     public static final String JavaDoc EVENT_ATTR_VFS_OPERATION = "VfsOperation";
81
82     /**
83      * vfs re-name old name
84      */

85     public static final String JavaDoc EVENT_ATTR_VFS_OLD_NAME = "VfsOldName";
86
87     /**
88      * vfs re-name new name
89      */

90     public static final String JavaDoc EVENT_ATTR_VFS_NEW_NAME = "VfsNewName";
91
92     /**
93      * vfs user agent
94      */

95     public static final String JavaDoc EVENT_ATTR_VFS_USER_AGENT = "VfsUserAgent";
96
97     /**
98      * A VFS directory has been listed
99      */

100     public static final int VFS_DIRECTORY_LISTED = 621;
101
102     /**
103      * A VFS directory has been created
104      */

105     public static final int VFS_DIRECTORY_CREATED = 622;
106
107     /**
108      * A VFS file has been removed
109      */

110     public static final int VFS_FILE_REMOVED = 623;
111
112     /**
113      * A VFS file, directory or zip has been downloaded
114      */

115     public static final int VFS_FILE_DOWNLOAD_STARTED = 624;
116
117     /**
118      * A VFS file, directory or zip has been downloaded
119      */

120     public static final int VFS_FILE_DOWNLOAD_COMPLETE = 625;
121
122     /**
123      * A VFS file or directory was copied
124      */

125     public static final int VFS_FILE_COPY = 626;
126
127     /**
128      * A VFS directory has been removed
129      */

130     public static final int VFS_REMOVE = 627;
131
132     /**
133      * A VFS upload file
134      */

135     public static final int VFS_UPLOAD_FILE = 628;
136
137     /**
138      * A VFS zip file
139      */

140     public static final int VFS_ZIP_DOWNLOAD = 629;
141
142     /**
143      * A VFS Paste operation
144      */

145     public static final int VFS_PASTE_OPERATION = 630;
146
147     /**
148      * A VFS re-name operation
149      */

150     public static final int VFS_RENAME = 631;
151
152     /**
153      * Network place created
154      */

155     public static final int CREATE_NETWORK_PLACE = 2020;
156
157     /**
158      * Network place updated
159      */

160     public static final int UPDATE_NETWORK_PLACE = 2019;
161
162     /**
163      * Network place deleted
164      */

165     public static final int DELETE_NETWORK_PLACE = 2021;
166 }
167
Popular Tags