Media-server

This commit is contained in:
Lakshmi C Rajeev
2019-11-29 12:30:07 +05:30
parent c2d0fba1d8
commit 7137bf227e
6 changed files with 108 additions and 17 deletions

View File

@@ -1,15 +0,0 @@
namespace sap.capire.media;
service MediaServer {
entity Images {
key url : URL;
type : String enum { jpeg; png; gif; };
content : Image;
}
}
type ImageURL : URL;
// type ImageURL : Association to MediaServer.Images;
//> would need Assotiations targeting off service to turn into references w/ foreign keys
type Image : LargeBinary @stream;
type URL : String(222);