org.kohsuke.github.GHContentWithLicense Maven / Gradle / Ivy
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