mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-11 08:21:21 +00:00
56 lines
1.1 KiB
Java
56 lines
1.1 KiB
Java
package org.kohsuke.github;
|
|
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
|
|
import static org.kohsuke.github.Previews.*;
|
|
|
|
/**
|
|
* Reaction to issue, comment, PR, and so on.
|
|
*
|
|
* @author Kohsuke Kawaguchi
|
|
* @see Reactable
|
|
*/
|
|
@Preview @Deprecated
|
|
public class GHReaction extends GHObject {
|
|
private GitHub root;
|
|
|
|
private GHUser user;
|
|
private ReactionContent content;
|
|
|
|
/*package*/ GHReaction wrap(GitHub root) {
|
|
this.root = root;
|
|
user.wrapUp(root);
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* The kind of reaction left.
|
|
*/
|
|
public ReactionContent getContent() {
|
|
return content;
|
|
}
|
|
|
|
/**
|
|
* User who left the reaction.
|
|
*/
|
|
public GHUser getUser() {
|
|
return user;
|
|
}
|
|
|
|
/**
|
|
* Reaction has no HTML URL. Don't call this method.
|
|
*/
|
|
@Deprecated
|
|
public URL getHtmlUrl() {
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Removes this reaction.
|
|
*/
|
|
public void delete() throws IOException {
|
|
new Requester(root).method("DELETE").withPreview(SQUIRREL_GIRL).to("/reactions/"+id);
|
|
}
|
|
}
|