mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-08 15:51:02 +00:00
20 lines
340 B
Java
20 lines
340 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* The type GHVerifiedKey.
|
|
*/
|
|
public class GHVerifiedKey extends GHKey {
|
|
|
|
/**
|
|
* Instantiates a new Gh verified key.
|
|
*/
|
|
public GHVerifiedKey() {
|
|
this.verified = true;
|
|
}
|
|
|
|
@Override
|
|
public String getTitle() {
|
|
return (title == null ? "key-" + id : title);
|
|
}
|
|
}
|