diff --git a/Assignment/.gitignore b/Assignment/.gitignore new file mode 100644 index 00000000..6c018781 --- /dev/null +++ b/Assignment/.gitignore @@ -0,0 +1,32 @@ +HELP.md +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/** +!**/src/test/** + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr +out/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ diff --git a/Assignment/build.gradle b/Assignment/build.gradle new file mode 100644 index 00000000..f057835d --- /dev/null +++ b/Assignment/build.gradle @@ -0,0 +1,32 @@ +plugins { + id 'org.springframework.boot' version '2.2.0.RELEASE' + id 'io.spring.dependency-management' version '1.0.8.RELEASE' + id 'java' +} + +group = 'com.versilistyson' +version = '0.0.1-SNAPSHOT' +sourceCompatibility = '11' + +configurations { + developmentOnly + runtimeClasspath { + extendsFrom developmentOnly + } +} + +repositories { + mavenCentral() +} + +dependencies { + implementation 'org.springframework.boot:spring-boot-starter-web' + developmentOnly 'org.springframework.boot:spring-boot-devtools' + testImplementation('org.springframework.boot:spring-boot-starter-test') { + exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' + } +} + +test { + useJUnitPlatform() +} diff --git a/Assignment/gradle/wrapper/gradle-wrapper.jar b/Assignment/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000..5c2d1cf0 Binary files /dev/null and b/Assignment/gradle/wrapper/gradle-wrapper.jar differ diff --git a/Assignment/gradle/wrapper/gradle-wrapper.properties b/Assignment/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000..7c4388a9 --- /dev/null +++ b/Assignment/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/Assignment/gradlew b/Assignment/gradlew new file mode 100755 index 00000000..83f2acfd --- /dev/null +++ b/Assignment/gradlew @@ -0,0 +1,188 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/Assignment/gradlew.bat b/Assignment/gradlew.bat new file mode 100644 index 00000000..9618d8d9 --- /dev/null +++ b/Assignment/gradlew.bat @@ -0,0 +1,100 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/Assignment/settings.gradle b/Assignment/settings.gradle new file mode 100644 index 00000000..48375037 --- /dev/null +++ b/Assignment/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'javacountriesassignment' diff --git a/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CheckCountry.java b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CheckCountry.java new file mode 100644 index 00000000..2dc4a35f --- /dev/null +++ b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CheckCountry.java @@ -0,0 +1,5 @@ +package com.versilistyson.javacountriesassignment; + +public interface CheckCountry { + boolean isValidMatch(Country country); +} diff --git a/Assignment/src/main/java/com/versilistyson/javacountriesassignment/Country.java b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/Country.java new file mode 100644 index 00000000..817957de --- /dev/null +++ b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/Country.java @@ -0,0 +1,47 @@ +package com.versilistyson.javacountriesassignment; + +public class Country { + private String name; + private int population; + private long landMassSize; + private long medianAge; + + public Country(String name, int population, long landMassSize, long medianAge) { + this.name = name; + this.population = population; + this.landMassSize = landMassSize; + this.medianAge = medianAge; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getPopulation() { + return population; + } + + public void setPopulation(int population) { + this.population = population; + } + + public long getLandMassSize() { + return landMassSize; + } + + public void setLandMassSize(long landMassSize) { + this.landMassSize = landMassSize; + } + + public long getMedianAge() { + return medianAge; + } + + public void setMedianAge(long medianAge) { + this.medianAge = medianAge; + } +} diff --git a/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CountryController.java b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CountryController.java new file mode 100644 index 00000000..92cfab38 --- /dev/null +++ b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CountryController.java @@ -0,0 +1,20 @@ +package com.versilistyson.javacountriesassignment; + +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("/data") +public class CountryController { + @GetMapping( + value = "/allcountries", + produces = {"application/json"} + ) + public ResponseEntity getAllCountries() { + JavaCountriesAssignmentApplication.myCountryList.countryList.sort((c1, c2) -> c1.getName().compareToIgnoreCase(c2.getName())); + return new ResponseEntity<>(JavaCountriesAssignmentApplication.myCountryList.countryList, HttpStatus.OK); + } +} diff --git a/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CountryList.java b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CountryList.java new file mode 100644 index 00000000..000508a3 --- /dev/null +++ b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/CountryList.java @@ -0,0 +1,219 @@ +package com.versilistyson.javacountriesassignment; + +import java.util.ArrayList; + +public class CountryList { + public ArrayList countryList = new ArrayList<>(); + + public Country findCountry(CheckCountry tester) { + for(Country country: countryList) { + if(tester.isValidMatch(country)) { + return country; + } + } + return null; + } + public CountryList() { + countryList.add(new Country("China",1420062022,9388211,39)); + countryList.add(new Country("India",1368737513,2973190,28)); + countryList.add(new Country("U.S.",329093110,9147420,38)); + countryList.add(new Country("Indonesia",269536482,1811570,29)); + countryList.add(new Country("Brazil",212392717,8358140,33)); + countryList.add(new Country("Pakistan",204596442,770880,23)); + countryList.add(new Country("Nigeria",200962417,910770,18)); + countryList.add(new Country("Bangladesh",168065920,130170,27)); + countryList.add(new Country("Russia",143895551,16376870,40)); + countryList.add(new Country("Mexico",132328035,1943950,29)); + countryList.add(new Country("Japan",126854745,364555,48)); + countryList.add(new Country("Ethiopia",110135635,1000000,20)); + countryList.add(new Country("Philippines",108106310,298170,25)); + countryList.add(new Country("Egypt",101168745,995450,25)); + countryList.add(new Country("Viet Nam",97429061,310070,33)); + countryList.add(new Country("DR Congo",86727573,2267050,17)); + countryList.add(new Country("Turkey",82961805,769630,32)); + countryList.add(new Country("Iran",82820766,1628550,32)); + countryList.add(new Country("Germany",82438639,348560,47)); + countryList.add(new Country("Thailand",69306160,510890,40)); + countryList.add(new Country("U.K.",66959016,241930,41)); + countryList.add(new Country("France",65480710,547557,42)); + countryList.add(new Country("Tanzania",60913557,885800,18)); + countryList.add(new Country("Italy",59216525,294140,48)); + countryList.add(new Country("South Africa",58065097,1213090,27)); + countryList.add(new Country("Myanmar",54336138,653290,29)); + countryList.add(new Country("Kenya",52214791,569140,20)); + countryList.add(new Country("South Korea",51339238,97230,43)); + countryList.add(new Country("Colombia",49849818,1109500,32)); + countryList.add(new Country("Spain",46441049,498800,46)); + countryList.add(new Country("Uganda",45711874,199810,16)); + countryList.add(new Country("Argentina",45101781,2736690,32)); + countryList.add(new Country("Ukraine",43795220,579320,41)); + countryList.add(new Country("Algeria",42679018,2381740,29)); + countryList.add(new Country("Sudan",42514094,1765048,20)); + countryList.add(new Country("Iraq",40412299,434320,20)); + countryList.add(new Country("Poland",38028278,306230,42)); + countryList.add(new Country("Canada",37279811,9093510,41)); + countryList.add(new Country("Afghanistan",37209007,652860,19)); + countryList.add(new Country("Morocco",36635156,446300,30)); + countryList.add(new Country("Saudi Arabia",34140662,2149690,32)); + countryList.add(new Country("Peru",32933835,1280000,29)); + countryList.add(new Country("Uzbekistan",32807368,425400,28)); + countryList.add(new Country("Venezuela",32779868,882050,29)); + countryList.add(new Country("Malaysia",32454455,328550,30)); + countryList.add(new Country("Angola",31787566,1246700,17)); + countryList.add(new Country("Mozambique",31408823,786380,18)); + countryList.add(new Country("Ghana",30096970,227540,21)); + countryList.add(new Country("Nepal",29942018,143350,25)); + countryList.add(new Country("Yemen",29579986,527970,20)); + countryList.add(new Country("Madagascar",26969642,581795,20)); + countryList.add(new Country("North Korea",25727408,120410,35)); + countryList.add(new Country("Cote d'Ivoire",25531083,318000,19)); + countryList.add(new Country("Cameroon",25312993,472710,19)); + countryList.add(new Country("Australia",25088636,7682300,38)); + countryList.add(new Country("Taiwan",23758247,35410,42)); + countryList.add(new Country("Niger",23176691,1266700,15)); + countryList.add(new Country("Sri Lanka",21018859,62710,34)); + countryList.add(new Country("Burkina Faso",20321560,273600,18)); + countryList.add(new Country("Malawi",19718743,94280,18)); + countryList.add(new Country("Mali",19689140,1220190,16)); + countryList.add(new Country("Romania",19483360,230170,43)); + countryList.add(new Country("Kazakhstan",18592970,2699700,31)); + countryList.add(new Country("Syria",18499181,183630,22)); + countryList.add(new Country("Chile",18336653,743532,35)); + countryList.add(new Country("Zambia",18137369,743390,18)); + countryList.add(new Country("Guatemala",17577842,107160,23)); + countryList.add(new Country("Zimbabwe",17297495,386850,20)); + countryList.add(new Country("Netherlands",17132908,33720,43)); + countryList.add(new Country("Ecuador",17100444,248360,28)); + countryList.add(new Country("Senegal",16743859,192530,19)); + countryList.add(new Country("Cambodia",16482646,176520,26)); + countryList.add(new Country("Chad",15814345,1259200,17)); + countryList.add(new Country("Somalia",15636171,627340,17)); + countryList.add(new Country("Guinea",13398180,245720,19)); + countryList.add(new Country("South Sudan",13263184,610952,19)); + countryList.add(new Country("Rwanda",12794412,24670,20)); + countryList.add(new Country("Benin",11801595,112760,19)); + countryList.add(new Country("Tunisia",11783168,155360,33)); + countryList.add(new Country("Burundi",11575964,25680,18)); + countryList.add(new Country("Belgium",11562784,30280,42)); + countryList.add(new Country("Cuba",11492046,106440,43)); + countryList.add(new Country("Bolivia",11379861,1083300,25)); + countryList.add(new Country("Haiti",11242856,27560,24)); + countryList.add(new Country("Greece",11124603,128900,45)); + countryList.add(new Country("Dominican Republic",10996774,48320,28)); + countryList.add(new Country("Czech Republic",10630589,77240,43)); + countryList.add(new Country("Portugal",10254666,91590,46)); + countryList.add(new Country("Jordan",10069794,88780,23)); + countryList.add(new Country("Sweden",10053135,410340,41)); + countryList.add(new Country("Azerbaijan",10014575,82658,32)); + countryList.add(new Country("United Arab Emirates",9682088,83600,34)); + countryList.add(new Country("Hungary",9655361,90530,43)); + countryList.add(new Country("Honduras",9568688,111890,25)); + countryList.add(new Country("Belarus",9433874,202910,40)); + countryList.add(new Country("Tajikistan",9292000,139960,23)); + countryList.add(new Country("Austria",8766201,82409,44)); + countryList.add(new Country("Serbia",8733407,87460,41)); + countryList.add(new Country("Switzerland",8608259,39516,43)); + countryList.add(new Country("Papua New Guinea",8586525,452860,23)); + countryList.add(new Country("Israel",8583916,21640,31)); + countryList.add(new Country("Togo",8186384,54390,19)); + countryList.add(new Country("Sierra Leone",7883123,72180,19)); + countryList.add(new Country("Hong Kong",7490776,1050,45)); + countryList.add(new Country("Laos",7064242,230800,24)); + countryList.add(new Country("Bulgaria",6988739,108560,45)); + countryList.add(new Country("Paraguay",6981981,397300,27)); + countryList.add(new Country("Libya",6569864,1759540,29)); + countryList.add(new Country("El Salvador",6445405,20720,28)); + countryList.add(new Country("Nicaragua",6351157,120340,27)); + countryList.add(new Country("Kyrgyzstan",6218616,191800,26)); + countryList.add(new Country("Lebanon",6065922,10230,31)); + countryList.add(new Country("Turkmenistan",5942561,469930,27)); + countryList.add(new Country("Singapore",5868104,700,42)); + countryList.add(new Country("Denmark",5775224,42430,42)); + countryList.add(new Country("Finland",5561389,303890,43)); + countryList.add(new Country("Congo",5542197,341500,19)); + countryList.add(new Country("Slovakia",5450987,48088,41)); + countryList.add(new Country("Norway",5400916,365268,40)); + countryList.add(new Country("Eritrea",5309659,101000,19)); + countryList.add(new Country("State of Palestine",5186790,6020,20)); + countryList.add(new Country("Oman",5001875,309500,31)); + countryList.add(new Country("Costa Rica",4999384,51060,34)); + countryList.add(new Country("Liberia",4977720,96320,19)); + countryList.add(new Country("Ireland",4847139,68890,39)); + countryList.add(new Country("Central African Republic",4825711,622980,18)); + countryList.add(new Country("New Zealand",4792409,263310,38)); + countryList.add(new Country("Mauritania",4661149,1030700,20)); + countryList.add(new Country("Kuwait",4248974,17820,34)); + countryList.add(new Country("Panama",4226197,74340,30)); + countryList.add(new Country("Croatia",4140148,55960,44)); + countryList.add(new Country("Moldova",4029750,32850,38)); + countryList.add(new Country("Georgia",3904204,69490,39)); + countryList.add(new Country("Puerto Rico",3654978,8870,38)); + countryList.add(new Country("Bosnia & Herzegovina",3501774,51000,42)); + countryList.add(new Country("Uruguay",3482156,175020,36)); + countryList.add(new Country("Mongolia",3166244,1553560,29)); + countryList.add(new Country("Albania",2938428,27400,38)); + countryList.add(new Country("Armenia",2936706,28470,36)); + countryList.add(new Country("Jamaica",2906339,10830,31)); + countryList.add(new Country("Lithuania",2864459,62674,43)); + countryList.add(new Country("Qatar",2743901,11610,32)); + countryList.add(new Country("Namibia",2641996,823290,22)); + countryList.add(new Country("Botswana",2374636,566730,26)); + countryList.add(new Country("Lesotho",2292682,30360,22)); + countryList.add(new Country("Gambia",2228075,10120,18)); + countryList.add(new Country("Gabon",2109099,257670,23)); + countryList.add(new Country("TFYR Macedonia",2086720,25220,39)); + countryList.add(new Country("Slovenia",2081900,20140,45)); + countryList.add(new Country("Guinea-Bissau",1953723,28120,19)); + countryList.add(new Country("Latvia",1911108,62200,44)); + countryList.add(new Country("Bahrain",1637896,760,32)); + countryList.add(new Country("Swaziland",1415414,17200,21)); + countryList.add(new Country("Trinidad and Tobago",1375443,5130,36)); + countryList.add(new Country("Equatorial Guinea",1360104,28050,22)); + countryList.add(new Country("Timor-Leste",1352360,14870,18)); + countryList.add(new Country("Estonia",1303798,42390,43)); + countryList.add(new Country("Mauritius",1271368,2030,37)); + countryList.add(new Country("Cyprus",1198427,9240,37)); + countryList.add(new Country("Djibouti",985690,23180,25)); + countryList.add(new Country("Fiji",918757,18270,29)); + countryList.add(new Country("Reunion",889918,2500,36)); + countryList.add(new Country("Comoros",850910,1861,20)); + countryList.add(new Country("Bhutan",826229,38117,29)); + countryList.add(new Country("Guyana",786508,196850,26)); + countryList.add(new Country("Macao",642090,30,39)); + countryList.add(new Country("Solomon Islands",635254,27990,21)); + countryList.add(new Country("Montenegro",629355,13450,39)); + countryList.add(new Country("Luxembourg",596992,2590,40)); + countryList.add(new Country("Western Sahara",582478,266000,28)); + countryList.add(new Country("Suriname",573085,156000,30)); + countryList.add(new Country("Cabo Verde",560349,4030,26)); + countryList.add(new Country("Maldives",451738,300,31)); + countryList.add(new Country("Guadeloupe",448798,1690,43)); + countryList.add(new Country("Brunei",439336,5270,32)); + countryList.add(new Country("Malta",433245,320,42)); + countryList.add(new Country("Bahamas",403095,10010,34)); + countryList.add(new Country("Belize",390231,22810,25)); + countryList.add(new Country("Martinique",385320,1060,46)); + countryList.add(new Country("Iceland",340566,100250,37)); + countryList.add(new Country("French Guiana",296847,82200,25)); + countryList.add(new Country("French Polynesia",288506,3660,33)); + countryList.add(new Country("Vanuatu",288017,12190,23)); + countryList.add(new Country("Barbados",287010,430,40)); + countryList.add(new Country("New Caledonia",283376,18280,33)); + countryList.add(new Country("Mayotte",266380,375,20)); + countryList.add(new Country("Sao Tome & Principe",213379,960,19)); + countryList.add(new Country("Samoa",198909,2830,22)); + countryList.add(new Country("Saint Lucia",180454,610,35)); + countryList.add(new Country("Guam",167245,540,31)); + countryList.add(new Country("Channel Islands",166828,190,44)); + countryList.add(new Country("Curacao",162547,444,42)); + countryList.add(new Country("Kiribati",120428,810,23)); + countryList.add(new Country("St. Vincent & Grenadines",110488,390,32)); + countryList.add(new Country("Tonga",110041,720,22)); + countryList.add(new Country("Grenada",108825,340,29)); + countryList.add(new Country("Micronesia",106983,700,23)); + countryList.add(new Country("Aruba",106053,180,41)); + countryList.add(new Country("U.S. Virgin Islands",104909,350,42)); + countryList.add(new Country("Antigua and Barbuda",104084,440,32)); + countryList.add(new Country("Seychelles",95702,460,36)); + } +} diff --git a/Assignment/src/main/java/com/versilistyson/javacountriesassignment/JavaCountriesAssignmentApplication.java b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/JavaCountriesAssignmentApplication.java new file mode 100644 index 00000000..a1af43de --- /dev/null +++ b/Assignment/src/main/java/com/versilistyson/javacountriesassignment/JavaCountriesAssignmentApplication.java @@ -0,0 +1,14 @@ +package com.versilistyson.javacountriesassignment; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class JavaCountriesAssignmentApplication { + static CountryList myCountryList; + public static void main(String[] args) { + myCountryList = new CountryList(); + SpringApplication.run(JavaCountriesAssignmentApplication.class, args); + } + +} diff --git a/Assignment/src/main/resources/application.properties b/Assignment/src/main/resources/application.properties new file mode 100644 index 00000000..6eb87796 --- /dev/null +++ b/Assignment/src/main/resources/application.properties @@ -0,0 +1 @@ +server.port=${Port:2019} diff --git a/Assignment/src/test/java/com/versilistyson/javacountriesassignment/JavaCountriesAssignmentApplicationTests.java b/Assignment/src/test/java/com/versilistyson/javacountriesassignment/JavaCountriesAssignmentApplicationTests.java new file mode 100644 index 00000000..5ac1fd03 --- /dev/null +++ b/Assignment/src/test/java/com/versilistyson/javacountriesassignment/JavaCountriesAssignmentApplicationTests.java @@ -0,0 +1,13 @@ +package com.versilistyson.javacountriesassignment; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class JavaCountriesAssignmentApplicationTests { + + @Test + void contextLoads() { + } + +}