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

org.kohsuke.github.GHContentWithLicense Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha-2
Show newest version
package org.kohsuke.github;

// TODO: Auto-generated Javadoc
/**
 * {@link GHContent} with license information.
 *
 * @author Kohsuke Kawaguchi
 * @see documentation
 * @see GHRepository#getLicense()
 */
class GHContentWithLicense extends GHContent {

    /** The license. */
    GHLicense license;

    /**
     * Wrap.
     *
     * @param owner
     *            the owner
     * @return the GH content with license
     */
    @Override
    GHContentWithLicense wrap(GHRepository owner) {
        super.wrap(owner);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy