com.github.jscancella.conformance.profile.Serialization Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagging Show documentation
Show all versions of bagging Show documentation
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.
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