blob: 390ae6dfc5a639f5a7834a2fe4a85c4eb5dd5fb4 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*/
import ns org.eclipse.osbp.blob.entities.Attributes
import ns org.eclipse.osbp.blob.entities.Blob
import ns org.eclipse.osbp.blob.entities.BlobMapping
import ns org.eclipse.osbp.blob.entities.BlobTyping
import ns org.eclipse.osbp.blob.entities.ContentType
import ns org.eclipse.osbp.blob.entities.MimeType
import ns org.eclipse.osbp.blob.entities.NormalizerResolution
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
}
}