blob: 6876c398557fa82c5778bacf199438a14fa45f34 [file] [log] [blame]
import ns org.eclipse.osbp.blob.entities.BlobTyping
import ns org.eclipse.osbp.blob.entities.MimeType
import ns org.eclipse.osbp.blob.entities.ContentType
import ns org.eclipse.osbp.blob.entities.Attributes
import ns org.eclipse.osbp.blob.entities.NormalizerResolution
import ns org.eclipse.osbp.blob.entities.BlobMapping
import ns org.eclipse.osbp.blob.entities.Blob
package org.eclipse.osbp.blob.dtos {
autoDto BlobTypingDto wraps BlobTyping {
inheritVar mimeType mapto MimeTypeDto
inheritRef attributes mapto AttributesDto
inheritRef normalizer mapto NormalizerResolutionDto
}
autoDto MimeTypeDto wraps MimeType {
inheritVar mimeVersion
inheritVar contentTransferEncoding
inheritRef contentTypeList mapto ContentTypeDto
}
autoDto ContentTypeDto wraps ContentType {
inheritVar id
inheritVar type
}
autoDto AttributesDto wraps Attributes {
inheritVar size
inheritVar resolution
}
autoDto NormalizerResolutionDto wraps NormalizerResolution {
inheritVar id
inheritVar name
inheritVar resolution
}
autoDto BlobMappingDto wraps BlobMapping {
inheritVar id
inheritVar uniqueName
inheritVar fileName
inheritVar mimeTypeId
inheritRef blobsRef mapto BlobDto
}
autoDto BlobDto wraps Blob {
inheritVar id
inheritVar data
inheritVar resolutionId
inheritRef blobMapping mapto BlobMappingDto
}
}