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

de.pfabulist.loracle.attribution.CopyrightHolder Maven / Gradle / Ivy

Go to download

maven plugin to check the licenses of all dependencies and possible incompatibilities

There is a newer version: 2.0.1
Show newest version
package de.pfabulist.loracle.attribution;

/**
 * Copyright (c) 2006 - 2016, Stephan Pfab
 * SPDX-License-Identifier: BSD-2-Clause
 */

public class CopyrightHolder {

    private final String years;
    private final String name;

    public CopyrightHolder( String years, String name ) {
        this.years = years;
        this.name = name;
    }

    public String getYears() {
        return years;
    }

    public String getName() {
        return name;
    }

    @Override
    public String toString() {
        return "Copyright (c) " + years + ", " + name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy