All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jscancella.conformance.profile.Serialization Maven / Gradle / Ivy

Go to download

This is a software library intended to support the creation, manipulation, and validation of "bags" from the bagit specification. It currently supports version 0.93 through 1.0.

There is a newer version: 5.2
Show newest version
package com.github.jscancella.conformance.profile;

/**
 * The type of serialization required by a {@link BagitProfile}
 */
public enum Serialization {
  /**
   * That serialization is forbidden. i.e. no zip, gz, etc.
   */
  forbidden,
  /**
   * That the bag is required to be serialized. i.e. zipped, gzipped, etc.
   */
  required,
  /**
   * That serialization is optional, but not forbidden.
   */
  optional;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy