summaryrefslogtreecommitdiffstats
path: root/test/uscxml/proto/3DViewer/DirectoryListingService.proto
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-05-12 13:12:33 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-05-12 13:12:33 (GMT)
commitb62e7979600feee23dc7cdb61042a8fc7673122b (patch)
treef7351372f37979dd2d048e0b68a16a4cd3b2aadb /test/uscxml/proto/3DViewer/DirectoryListingService.proto
parent1b11b310be61e51b3ac5ebb83f7c8a33aef3d6e8 (diff)
downloaduscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.zip
uscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.tar.gz
uscxml-b62e7979600feee23dc7cdb61042a8fc7673122b.tar.bz2
Major Refactoring v2.0
Diffstat (limited to 'test/uscxml/proto/3DViewer/DirectoryListingService.proto')
-rw-r--r--test/uscxml/proto/3DViewer/DirectoryListingService.proto48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/uscxml/proto/3DViewer/DirectoryListingService.proto b/test/uscxml/proto/3DViewer/DirectoryListingService.proto
deleted file mode 100644
index 4a0e412..0000000
--- a/test/uscxml/proto/3DViewer/DirectoryListingService.proto
+++ /dev/null
@@ -1,48 +0,0 @@
-option java_package = "org.umundo.filesystem";
-
-message DirectoryEntry {
- enum Type {
- NAMED_PIPE = 0;
- CHAR_DEV = 1;
- BLOCK_DEV = 2;
- FILE = 3;
- DIR = 4;
- SYMLINK = 5;
- SOCKET = 6;
- UNKNOWN = 7;
- }
- required string name = 1;
- required Type type = 2;
- required string path = 3;
- required int64 size = 4;
- optional string extension = 5;
-
- repeated string segments = 6;
-
- optional int64 atime_ms = 11;
- optional int64 ctime_ms = 12;
- optional int64 mtime_ms = 13;
- optional int64 btime_ms = 14;
-
- required string hostId = 15;
-
-}
-
-message DirectoryListingRequest {
- required string pattern = 1;
-}
-
-message DirectoryListingReply {
- repeated DirectoryEntry entries = 1;
-}
-
-message DirectoryEntryContent {
- required bytes content = 1;
- required string md5 = 2;
-}
-
-service DirectoryListingService {
- rpc list (DirectoryListingRequest) returns (DirectoryListingReply);
- rpc get (DirectoryEntry) returns (DirectoryEntryContent);
-}
-