Package ru.aristar.jnuget

Examples of ru.aristar.jnuget.Author


    public PackageEntry(NuspecFile nuspecFile, Hash packageHash, Long packageSize, Date updateDate) {
        this.nuspecFile = nuspecFile;
        this.title = new Title(nuspecFile.getId());
        getProperties().setNuspec(nuspecFile);
        this.updated = updateDate;
        this.author = new Author(nuspecFile.getAuthors());
        PackageEntry.this.getLinks().add(new Link("edit-media", "Package",
                "Packages" + getCombineIdAndVersion() + "/$value"));
        PackageEntry.this.getLinks().add(new Link("edit", "Package",
                "Packages" + getCombineIdAndVersion()));
        this.getProperties().setPackageHash(packageHash.toString());
View Full Code Here

TOP

Related Classes of ru.aristar.jnuget.Author

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.