Sha256: c80d99636b679169fb1a687b73297ec60f265d36216a8e630697489d8ecd16f2

Contents?: true

Size: 927 Bytes

Versions: 2

Compression:

Stored size: 927 Bytes

Contents

module Ddr::Batch

  class BatchObjectDatastream < ActiveRecord::Base

    belongs_to :batch_object, :inverse_of => :batch_object_datastreams

    DATASTREAMS = [ Ddr::Models::File::CONTENT,
                    Ddr::Models::File::DESC_METADATA,
                    Ddr::Models::File::STRUCT_METADATA ]

    OPERATION_ADD = "ADD" # add this datastream to the object -- considered an error if datastream already exists
    OPERATION_ADDUPDATE = "ADDUPDATE" # add this datastream to or update this datastream in the object
    OPERATION_UPDATE = "UPDATE" # update this datastream in the object -- considered an error if datastream does not already exist
    OPERATION_DELETE = "DELETE" # delete this datastream from the object -- considered an error if datastream does not exist

    PAYLOAD_TYPE_BYTES = "BYTES"
    PAYLOAD_TYPE_FILENAME = "FILENAME"

    PAYLOAD_TYPES = [ PAYLOAD_TYPE_BYTES, PAYLOAD_TYPE_FILENAME ]
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ddr-batch-2.0.0.beta.4 app/models/ddr/batch/batch_object_datastream.rb
ddr-batch-2.0.0.beta.3 app/models/ddr/batch/batch_object_datastream.rb