forked from treehouse-projects/java-debugging-flashy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moves the GitHub bootstrap to be form based instead of application based
- Loading branch information
craigsdennis
committed
Jul 12, 2016
1 parent
caaf74e
commit 3a96fd4
Showing
4 changed files
with
58 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/main/java/com/teamtreehouse/flashy/domain/BootstrapOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.teamtreehouse.flashy.domain; | ||
|
||
public class BootstrapOptions { | ||
private boolean shouldFork; | ||
private String githubOauth; | ||
|
||
public boolean isShouldFork() { | ||
return shouldFork; | ||
} | ||
|
||
public void setShouldFork(boolean shouldFork) { | ||
this.shouldFork = shouldFork; | ||
} | ||
|
||
public String getGithubOauth() { | ||
return githubOauth; | ||
} | ||
|
||
public void setGithubOauth(String githubOauth) { | ||
this.githubOauth = githubOauth; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters