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

net.java.truelicense.xml.XmlRepository Maven / Gradle / Ivy

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); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy