initial metadata service with full coverage

This commit is contained in:
William Welling
2017-10-13 00:38:26 -05:00
parent c37a30ec2a
commit 2f9c8468fd
10 changed files with 226 additions and 50 deletions

View File

@@ -1,6 +1,7 @@
import { DSpaceObject } from './dspace-object.model';
import { RemoteData } from '../data/remote-data';
import { Item } from './item.model';
import { BitstreamFormat } from './bitstream-format.model';
export class Bitstream extends DSpaceObject {
@@ -9,11 +10,6 @@ export class Bitstream extends DSpaceObject {
*/
sizeBytes: number;
/**
* The mime type of this Bitstream
*/
mimetype: string;
/**
* The description of this Bitstream
*/
@@ -24,6 +20,11 @@ export class Bitstream extends DSpaceObject {
*/
bundleName: string;
/**
* An array of Bitstream Format of this Bitstream
*/
format: RemoteData<BitstreamFormat>;
/**
* An array of Items that are direct parents of this Bitstream
*/