diff options
| author | drtshock <drtshock@snw.io> | 2014-02-16 21:49:14 -0600 |
|---|---|---|
| committer | drtshock <drtshock@snw.io> | 2014-02-16 21:49:14 -0600 |
| commit | b3d4b507491c45b44e15e4703af88127987ef7e5 (patch) | |
| tree | f6792fa304552444ccb01d39eeaca10157970e76 /src | |
| parent | 2f80511d6e7f2798f9ac6cd19d4cfa8e7cd58b31 (diff) | |
| parent | a2f70b155b51ee9acd47bb4977a92ce5817569d0 (diff) | |
Merge pull request #28 from lifehome/master
We do bake potatoes, don't we?
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/org/drtshock/Potato.java | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/main/java/org/drtshock/Potato.java b/src/main/java/org/drtshock/Potato.java index bf3a72b..6733a5b 100644 --- a/src/main/java/org/drtshock/Potato.java +++ b/src/main/java/org/drtshock/Potato.java @@ -2,6 +2,7 @@ package org.drtshock; import java.util.List; import java.util.ArrayList; +import java.net.HttpURLConnection; public class Potato implements Tuber { @@ -15,7 +16,7 @@ public class Potato implements Tuber { } public boolean prepare() { - this.addCondiments("sour cream", "chives", "butter", "crumbled bacon", "grated cheese", "ketchup"); + this.addCondiments("sour cream", "chives", "butter", "crumbled bacon", "grated cheese", "ketchup", "salt", "tabasco"); return this.isDelicious(); } @@ -24,10 +25,27 @@ public class Potato implements Tuber { for (String condimentName : names) condiments.add(new Condiment(condimentName)); } } + + public boolean isPutintoOven { + URL url = new URL("https://www.google.com/"); + HttpURLConnection connection = (HttpURLConnection)url.openConnection(); + connection.setRequestMethod("GET"); + connection.connect(); + + int inOven = connection.getResponseCode(); + if (inOven == 200) return true; // you need to put into an oven before bake it. + else return false; + } + public boolean isBaked() { + if(this.isPutintoOven) return true; + else return false; + } + @Override public boolean isDelicious() { - return true; // obviously, potatos are always delicious + if(isBaked) return true; // this way we could move on to our condiments. =D + else return false; // you don't eat a raw potato, don't you? } @Override |
