Ejemplo n.º 1
0
 private String getMimeType(Vertex artifactVertex) {
   String mimeType = LumifyProperties.MIME_TYPE.getPropertyValue(artifactVertex);
   if (mimeType == null || mimeType.isEmpty()) {
     mimeType = "application/octet-stream";
   }
   return mimeType;
 }