net.java.truelicense.xml.XmlRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truelicense-xml Show documentation
Show all versions of truelicense-xml Show documentation
Provides Utilities for XML.
The newest version!
/*
* Copyright (C) 2005-2013 Schlichtherle IT Services.
* All rights reserved. Use is subject to license terms.
*/
package net.java.truelicense.xml;
import java.beans.XMLDecoder;
import net.java.truelicense.core.auth.GenericRepository;
/**
* A generic repository which uses an {@link XmlCodec}.
*
* @author Christian Schlichtherle
*/
public final class XmlRepository extends GenericRepository {
/** @deprecated This constructor is reserved for {@link XMLDecoder}. */
@Deprecated
public XmlRepository() { this(new XmlCodec()); }
/**
* Constructs an XML repository.
*
* @param codec the XML codec for the artifact.
*/
public XmlRepository(XmlCodec codec) { super(codec); }
}