gov.loc.repository.bagit.v0_93.impl.BagConstantsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bagit Show documentation
Show all versions of bagit Show documentation
The BAGIT LIBRARY is a software library intended to support the creation, manipulation, and validation of bags. Its current version is 0.97. It is version aware with the earliest supported version being 0.93.
package gov.loc.repository.bagit.v0_93.impl;
import gov.loc.repository.bagit.BagFactory.Version;
import gov.loc.repository.bagit.impl.AbstractBagConstants;
public class BagConstantsImpl extends AbstractBagConstants {
public static final Version VERSION = Version.V0_93;
public static final String PACKAGEINFO_TXT = "package-info.txt";
public Version getVersion() {
return VERSION;
}
@Override
public String getBagInfoTxt() {
return PACKAGEINFO_TXT;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy