org.kohsuke.github.GHBranchProtection Maven / Gradle / Ivy
The newest version!
package org.kohsuke.github;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import java.io.IOException;
import java.util.Collection;
import java.util.Collections;
// TODO: Auto-generated Javadoc
/**
* The type GHBranchProtection.
*
* @see GitHub Branch Protection
*/
@SuppressFBWarnings(
value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD",
"URF_UNREAD_FIELD" },
justification = "JSON API")
public class GHBranchProtection extends GitHubInteractiveObject {
/**
* Create default GHBranchProtection instance
*/
public GHBranchProtection() {
}
private static final String REQUIRE_SIGNATURES_URI = "/required_signatures";
@JsonProperty
private AllowDeletions allowDeletions;
@JsonProperty
private AllowForcePushes allowForcePushes;
@JsonProperty
private AllowForkSyncing allowForkSyncing;
@JsonProperty
private BlockCreations blockCreations;
@JsonProperty
private EnforceAdmins enforceAdmins;
@JsonProperty
private LockBranch lockBranch;
@JsonProperty
private RequiredConversationResolution requiredConversationResolution;
@JsonProperty
private RequiredLinearHistory requiredLinearHistory;
@JsonProperty("required_pull_request_reviews")
private RequiredReviews requiredReviews;
@JsonProperty
private RequiredStatusChecks requiredStatusChecks;
@JsonProperty
private Restrictions restrictions;
@JsonProperty
private String url;
/**
* Enabled signed commits.
*
* @throws IOException
* the io exception
*/
public void enabledSignedCommits() throws IOException {
requester().method("POST").withUrlPath(url + REQUIRE_SIGNATURES_URI).fetch(RequiredSignatures.class);
}
/**
* Disable signed commits.
*
* @throws IOException
* the io exception
*/
public void disableSignedCommits() throws IOException {
requester().method("DELETE").withUrlPath(url + REQUIRE_SIGNATURES_URI).send();
}
/**
* Gets allow deletions.
*
* @return the enforce admins
*/
public AllowDeletions getAllowDeletions() {
return allowDeletions;
}
/**
* Gets allow force pushes.
*
* @return the enforce admins
*/
public AllowForcePushes getAllowForcePushes() {
return allowForcePushes;
}
/**
* Gets allow fork syncing.
*
* @return the enforce admins
*/
public AllowForkSyncing getAllowForkSyncing() {
return allowForkSyncing;
}
/**
* Gets block creations.
*
* @return the enforce admins
*/
public BlockCreations getBlockCreations() {
return blockCreations;
}
/**
* Gets enforce admins.
*
* @return the enforce admins
*/
public EnforceAdmins getEnforceAdmins() {
return enforceAdmins;
}
/**
* Gets lock branch.
*
* @return the enforce admins
*/
public LockBranch getLockBranch() {
return lockBranch;
}
/**
* Gets required conversation resolution.
*
* @return the enforce admins
*/
public RequiredConversationResolution getRequiredConversationResolution() {
return requiredConversationResolution;
}
/**
* Gets required linear history.
*
* @return the enforce admins
*/
public RequiredLinearHistory getRequiredLinearHistory() {
return requiredLinearHistory;
}
/**
* Gets required reviews.
*
* @return the required reviews
*/
public RequiredReviews getRequiredReviews() {
return requiredReviews;
}
/**
* Gets required signatures.
*
* @return the required signatures
* @throws IOException
* the io exception
*/
public boolean getRequiredSignatures() throws IOException {
return requester().withUrlPath(url + REQUIRE_SIGNATURES_URI).fetch(RequiredSignatures.class).enabled;
}
/**
* Gets required status checks.
*
* @return the required status checks
*/
public RequiredStatusChecks getRequiredStatusChecks() {
return requiredStatusChecks;
}
/**
* Gets restrictions.
*
* @return the restrictions
*/
public Restrictions getRestrictions() {
return restrictions;
}
/**
* Gets url.
*
* @return the url
*/
public String getUrl() {
return url;
}
private Requester requester() {
return root().createRequest();
}
/**
* The type AllowDeletions.
*/
public static class AllowDeletions {
/**
* Create default AllowDeletions instance
*/
public AllowDeletions() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type Check.
*/
public static class Check {
private String context;
@JsonInclude(JsonInclude.Include.NON_NULL)
private Integer appId;
/**
* no-arg constructor for the serializer
*/
public Check() {
}
/**
* Regular constructor for use in user business logic
*
* @param context
* the context string of the check
* @param appId
* the application ID the check is supposed to come from. Pass "-1" to explicitly allow any app to
* set the status. Pass "null" to automatically select the GitHub App that has recently provided this
* check.
*/
public Check(String context, Integer appId) {
this.context = context;
this.appId = appId;
}
/**
* The context string of the check
*
* @return the string
*/
public String getContext() {
return context;
}
/**
* The application ID the check is supposed to come from. The value "-1" indicates "any source".
*
* @return the integer
*/
public Integer getAppId() {
return appId;
}
}
/**
* The type AllowForcePushes.
*/
public static class AllowForcePushes {
/**
* Create default AllowForcePushes instance
*/
public AllowForcePushes() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type AllowForkSyncing.
*/
public static class AllowForkSyncing {
/**
* Create default AllowForkSyncing instance
*/
public AllowForkSyncing() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type BlockCreations.
*/
public static class BlockCreations {
/**
* Create default BlockCreations instance
*/
public BlockCreations() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type EnforceAdmins.
*/
public static class EnforceAdmins {
/**
* Create default EnforceAdmins instance
*/
public EnforceAdmins() {
}
@JsonProperty
private boolean enabled;
@JsonProperty
private String url;
/**
* Gets url.
*
* @return the url
*/
public String getUrl() {
return url;
}
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type LockBranch.
*/
public static class LockBranch {
/**
* Create default LockBranch instance
*/
public LockBranch() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type RequiredConversationResolution.
*/
public static class RequiredConversationResolution {
/**
* Create default RequiredConversationResolution instance
*/
public RequiredConversationResolution() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type RequiredLinearHistory.
*/
public static class RequiredLinearHistory {
/**
* Create default RequiredLinearHistory instance
*/
public RequiredLinearHistory() {
}
@JsonProperty
private boolean enabled;
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type RequiredReviews.
*/
public static class RequiredReviews {
/**
* Create default RequiredReviews instance
*/
public RequiredReviews() {
}
@JsonProperty("dismissal_restrictions")
private Restrictions dismissalRestriction;
@JsonProperty
private boolean dismissStaleReviews;
@JsonProperty
private boolean requireCodeOwnerReviews;
@JsonProperty
private boolean requireLastPushApproval;
@JsonProperty("required_approving_review_count")
private int requiredReviewers;
@JsonProperty
private String url;
/**
* Gets dismissal restrictions.
*
* @return the dismissal restrictions
*/
public Restrictions getDismissalRestrictions() {
return dismissalRestriction;
}
/**
* Gets url.
*
* @return the url
*/
public String getUrl() {
return url;
}
/**
* Is dismiss stale reviews boolean.
*
* @return the boolean
*/
public boolean isDismissStaleReviews() {
return dismissStaleReviews;
}
/**
* Is require code owner reviews boolean.
*
* @return the boolean
*/
public boolean isRequireCodeOwnerReviews() {
return requireCodeOwnerReviews;
}
/**
* Is require last push approval boolean.
*
* @return the boolean
*/
public boolean isRequireLastPushApproval() {
return requireLastPushApproval;
}
/**
* Gets required reviewers.
*
* @return the required reviewers
*/
public int getRequiredReviewers() {
return requiredReviewers;
}
}
private static class RequiredSignatures {
@JsonProperty
private boolean enabled;
@JsonProperty
private String url;
/**
* Gets url.
*
* @return the url
*/
public String getUrl() {
return url;
}
/**
* Is enabled boolean.
*
* @return the boolean
*/
public boolean isEnabled() {
return enabled;
}
}
/**
* The type RequiredStatusChecks.
*/
public static class RequiredStatusChecks {
/**
* Create default RequiredStatusChecks instance
*/
public RequiredStatusChecks() {
}
@JsonProperty
private Collection contexts;
@JsonProperty
private Collection checks;
@JsonProperty
private boolean strict;
@JsonProperty
private String url;
/**
* Gets contexts.
*
* @return the contexts
*/
public Collection getContexts() {
return Collections.unmodifiableCollection(contexts);
}
/**
* Gets checks.
*
* @return the checks
*/
public Collection getChecks() {
return Collections.unmodifiableCollection(checks);
}
/**
* Gets url.
*
* @return the url
*/
public String getUrl() {
return url;
}
/**
* Is requires branch up to date boolean.
*
* @return the boolean
*/
public boolean isRequiresBranchUpToDate() {
return strict;
}
}
/**
* The type Restrictions.
*/
public static class Restrictions {
/**
* Create default Restrictions instance
*/
public Restrictions() {
}
@JsonProperty
private Collection teams;
private String teamsUrl;
@JsonProperty
private String url;
@JsonProperty
private Collection users;
private String usersUrl;
/**
* Gets teams.
*
* @return the teams
*/
public Collection getTeams() {
return Collections.unmodifiableCollection(teams);
}
/**
* Gets teams url.
*
* @return the teams url
*/
public String getTeamsUrl() {
return teamsUrl;
}
/**
* Gets url.
*
* @return the url
*/
public String getUrl() {
return url;
}
/**
* Gets users.
*
* @return the users
*/
public Collection getUsers() {
return Collections.unmodifiableCollection(users);
}
/**
* Gets users url.
*
* @return the users url
*/
public String getUsersUrl() {
return usersUrl;
}
}
}