Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@
import org.kohsuke.stapler.interceptor.RequirePOST;

import static hudson.model.Items.XSTREAM2;
import org.kohsuke.stapler.export.Exported;

public class GitHubSCMSource extends AbstractGitSCMSource {

Expand Down Expand Up @@ -380,6 +381,7 @@ public void setCredentialsId(@CheckForNull String credentialsId) {
* Gets the repository owner.
* @return the repository owner.
*/
@Exported
@NonNull
public String getRepoOwner() {
return repoOwner;
Expand All @@ -389,6 +391,7 @@ public String getRepoOwner() {
* Gets the repository name.
* @return the repository name.
*/
@Exported
@NonNull
public String getRepository() {
return repository;
Expand Down