org.kohsuke.github.GHVerifiedKey Maven / Gradle / Ivy
package org.kohsuke.github;
public class GHVerifiedKey extends GHKey {
public GHVerifiedKey() {
this.verified = true;
}
@Override
public String getTitle() {
return (title == null ? "key-" + id : title);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy