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

gov.loc.repository.bagit.impl.BagInfoTxtWriterImpl Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 5.2.0
Show newest version
package gov.loc.repository.bagit.impl;

import java.io.OutputStream;

import gov.loc.repository.bagit.BagInfoTxt;
import gov.loc.repository.bagit.BagInfoTxtWriter;
import gov.loc.repository.bagit.utilities.namevalue.impl.NameValueWriterImpl;

public class BagInfoTxtWriterImpl extends NameValueWriterImpl implements
		BagInfoTxtWriter {

	public BagInfoTxtWriterImpl(OutputStream out, String encoding) {
		super(out, encoding, BagInfoTxt.TYPE);
	}
	
	public BagInfoTxtWriterImpl(OutputStream out,
			String encoding, int lineLength, int indentSpaces) {
		super(out, encoding, lineLength, indentSpaces, BagInfoTxt.TYPE);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy