1 | module WebFlow { |
2 | module FileBrowser { |
3 | typedef sequence<string> FileList; |
4 | |
5 | interface WFFileDescriptor { |
6 | Object getSource(); |
7 | string getFileName(); |
8 | string getFileDirectory(); |
9 | string getFileHost(); |
10 | string getFileAttribute(); |
11 | void setFileName(in string Name); |
12 | void setFileDirectory(in string Name); |
13 | void setFileHost(in string Name); |
14 | void setFileAttribute(in string Name); |
15 | }; |
16 | }; |
17 | |
18 |