+
\ No newline at end of file
diff --git a/HackVG/domain/build/classes/main/com/hackvg/domain/Usecase.class b/HackVG/domain/build/classes/main/com/hackvg/domain/Usecase.class
deleted file mode 100644
index 4d87b85..0000000
Binary files a/HackVG/domain/build/classes/main/com/hackvg/domain/Usecase.class and /dev/null differ
diff --git a/HackVG/domain/build/tmp/jar/MANIFEST.MF b/HackVG/domain/build/tmp/jar/MANIFEST.MF
index 58630c0..59499bc 100644
--- a/HackVG/domain/build/tmp/jar/MANIFEST.MF
+++ b/HackVG/domain/build/tmp/jar/MANIFEST.MF
@@ -1,2 +1,2 @@
-Manifest-Version: 1.0
-
+Manifest-Version: 1.0
+
diff --git a/HackVG/domain/domain.iml b/HackVG/domain/domain.iml
index 8792a50..83fca54 100644
--- a/HackVG/domain/domain.iml
+++ b/HackVG/domain/domain.iml
@@ -19,8 +19,8 @@
-
+
@@ -35,4 +35,209 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecase.java b/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecase.java
index aec2f87..1ee1bc5 100644
--- a/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecase.java
+++ b/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecase.java
@@ -12,7 +12,7 @@ public interface ConfigurationUsecase extends Usecase {
/**
* Request data source the configuration data
*/
- void requestConfiguration ();
+ void requestConfiguration();
/**
* Callback used to be notified when the configuration data has been received
@@ -20,14 +20,14 @@ public interface ConfigurationUsecase extends Usecase {
* @param configurationResponse the configuration with the data about the endpoint
* of the images
*/
- void onConfigurationReceived (ConfigurationResponse configurationResponse);
+ void onConfigurationReceived(ConfigurationResponse configurationResponse);
/**
* Configures the endpoint used to retrieve images from the movie database api
*
* @param configurationResponse the configuration with the data about the endpoint of the images
*/
- void configureImageUrl (ConfigurationResponse configurationResponse);
+ void configureImageUrl(ConfigurationResponse configurationResponse);
/**
* Sends a configured to request images from the movie database api
diff --git a/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecaseController.java b/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecaseController.java
index 777d6ff..d92fe5c 100644
--- a/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecaseController.java
+++ b/HackVG/domain/src/main/java/com/hackvg/domain/ConfigurationUsecaseController.java
@@ -11,8 +11,8 @@
@SuppressWarnings("FieldCanBeLocal")
public class ConfigurationUsecaseController implements ConfigurationUsecase {
- private final String QUALITY_DESIRED = "w780";
- private final String QUALITY_ORIGINAL = "original";
+ private final String QUALITY_DESIRED = "w780";
+ private final String QUALITY_ORIGINAL = "original";
private final MediaDataSource mMediaDataSource;
private final Bus mMainBus;
@@ -20,8 +20,8 @@ public class ConfigurationUsecaseController implements ConfigurationUsecase {
@Inject
public ConfigurationUsecaseController(MediaDataSource mediaDataSource, Bus mainBus) {
- mMediaDataSource = mediaDataSource;
- mMainBus = mainBus;
+ mMediaDataSource = mediaDataSource;
+ mMainBus = mainBus;
mMainBus.register(this);
}
diff --git a/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecase.java b/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecase.java
index ac16cd2..9ed9e5a 100644
--- a/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecase.java
+++ b/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecase.java
@@ -17,13 +17,13 @@ public interface GetMovieDetailUsecase extends Usecase {
*
* @param movieId of the movie
*/
- void requestMovieDetail (String movieId);
+ void requestMovieDetail(String movieId);
/**
* Request datasource the reviews written about that movie
* @param movieId of the film
*/
- void requestMovieReviews (String movieId);
+ void requestMovieReviews(String movieId);
/**
* Request datasource the images of the film submited to the API
@@ -38,7 +38,7 @@ public interface GetMovieDetailUsecase extends Usecase {
*
* @param response the response containing the details of the film
*/
- void onMovieDetailResponse (MovieDetail response);
+ void onMovieDetailResponse(MovieDetail response);
void onMovieReviewsResponse (ReviewsWrapper reviewsWrapper);
@@ -57,5 +57,5 @@ public interface GetMovieDetailUsecase extends Usecase {
*
* @param response the response containing the details of the film
*/
- void sendDetailMovieToPresenter (MovieDetail response);
+ void sendDetailMovieToPresenter(MovieDetail response);
}
diff --git a/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecaseController.java b/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecaseController.java
index f1e0497..1fd5efa 100644
--- a/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecaseController.java
+++ b/HackVG/domain/src/main/java/com/hackvg/domain/GetMovieDetailUsecaseController.java
@@ -19,11 +19,11 @@ public class GetMovieDetailUsecaseController implements GetMovieDetailUsecase {
public GetMovieDetailUsecaseController(String movieId, Bus uiBus,
- MediaDataSource dataSource) {
+ MediaDataSource dataSource) {
- mMovieId = movieId;
- mUiBus = uiBus;
- mMovieDataSource= dataSource;
+ mMovieId = movieId;
+ mUiBus = uiBus;
+ mMovieDataSource = dataSource;
mUiBus.register(this);
}
diff --git a/HackVG/domain/src/main/java/com/hackvg/domain/Usecase.java b/HackVG/domain/src/main/java/com/hackvg/domain/Usecase.java
index 66430d5..5b801a2 100644
--- a/HackVG/domain/src/main/java/com/hackvg/domain/Usecase.java
+++ b/HackVG/domain/src/main/java/com/hackvg/domain/Usecase.java
@@ -5,5 +5,5 @@
*/
public interface Usecase {
- void execute ();
+ void execute();
}
diff --git a/HackVG/gradle/wrapper/gradle-wrapper.jar b/HackVG/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 8c0fb64..0000000
Binary files a/HackVG/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/HackVG/gradlew b/HackVG/gradlew
old mode 100755
new mode 100644
diff --git a/HackVG/gradlew.bat b/HackVG/gradlew.bat
index aec9973..8a0b282 100644
--- a/HackVG/gradlew.bat
+++ b/HackVG/gradlew.bat
@@ -1,90 +1,90 @@
-@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
-
-@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=
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@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 Windowz variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-if "%@eval[2+2]" == "4" goto 4NT_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=%*
-goto execute
-
-:4NT_args
-@rem Get arguments from the 4NT Shell from JP Software
-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
+@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
+
+@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=
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@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 Windowz variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+if "%@eval[2+2]" == "4" goto 4NT_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=%*
+goto execute
+
+:4NT_args
+@rem Get arguments from the 4NT Shell from JP Software
+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/HackVG/model/build/classes/main/com/hackvg/model/entities/Belongs_to_collection.class b/HackVG/model/build/classes/main/com/hackvg/model/entities/Belongs_to_collection.class
deleted file mode 100644
index 71feb9b..0000000
Binary files a/HackVG/model/build/classes/main/com/hackvg/model/entities/Belongs_to_collection.class and /dev/null differ
diff --git a/HackVG/model/build/classes/main/com/hackvg/model/entities/ConfigurationResponse$ConfigurationImages.class b/HackVG/model/build/classes/main/com/hackvg/model/entities/ConfigurationResponse$ConfigurationImages.class
deleted file mode 100644
index 42fa776..0000000
Binary files a/HackVG/model/build/classes/main/com/hackvg/model/entities/ConfigurationResponse$ConfigurationImages.class and /dev/null differ
diff --git a/HackVG/model/build/classes/main/com/hackvg/model/entities/ConfigurationResponse.class b/HackVG/model/build/classes/main/com/hackvg/model/entities/ConfigurationResponse.class
deleted file mode 100644
index e76b848..0000000
Binary files a/HackVG/model/build/classes/main/com/hackvg/model/entities/ConfigurationResponse.class and /dev/null differ
diff --git a/HackVG/model/build/classes/main/com/hackvg/model/entities/Genres.class b/HackVG/model/build/classes/main/com/hackvg/model/entities/Genres.class
deleted file mode 100644
index c2660aa..0000000
Binary files a/HackVG/model/build/classes/main/com/hackvg/model/entities/Genres.class and /dev/null differ
diff --git a/HackVG/model/build/classes/main/com/hackvg/model/entities/TvShow.class b/HackVG/model/build/classes/main/com/hackvg/model/entities/TvShow.class
deleted file mode 100644
index faa3602..0000000
Binary files a/HackVG/model/build/classes/main/com/hackvg/model/entities/TvShow.class and /dev/null differ
diff --git a/HackVG/model/build/tmp/jar/MANIFEST.MF b/HackVG/model/build/tmp/jar/MANIFEST.MF
index 58630c0..59499bc 100644
--- a/HackVG/model/build/tmp/jar/MANIFEST.MF
+++ b/HackVG/model/build/tmp/jar/MANIFEST.MF
@@ -1,2 +1,2 @@
-Manifest-Version: 1.0
-
+Manifest-Version: 1.0
+
diff --git a/HackVG/model/model.iml b/HackVG/model/model.iml
index bac6944..ecfe2db 100644
--- a/HackVG/model/model.iml
+++ b/HackVG/model/model.iml
@@ -19,8 +19,8 @@
-
+
@@ -32,4 +32,209 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/HackVG/model/src/main/java/com/hackvg/model/MediaDataSource.java b/HackVG/model/src/main/java/com/hackvg/model/MediaDataSource.java
index 6871f3e..d76d38c 100644
--- a/HackVG/model/src/main/java/com/hackvg/model/MediaDataSource.java
+++ b/HackVG/model/src/main/java/com/hackvg/model/MediaDataSource.java
@@ -4,16 +4,16 @@ public interface MediaDataSource {
void getMovies();
- void getDetailMovie (String id);
+ void getDetailMovie(String id);
/**
* Get the reviews for a particular movie id.
*
* @param id movie id
*/
- void getReviews (String id);
+ void getReviews(String id);
- void getConfiguration ();
+ void getConfiguration();
/**
* Get a list of images represented by a MoviesWrapper
@@ -21,5 +21,5 @@ public interface MediaDataSource {
*
* @param movieId the movie id
*/
- void getImages (String movieId);
+ void getImages(String movieId);
}
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/Belongs_to_collection.java b/HackVG/model/src/main/java/com/hackvg/model/entities/Belongs_to_collection.java
old mode 100755
new mode 100644
index a98f392..b9aa23d
--- a/HackVG/model/src/main/java/com/hackvg/model/entities/Belongs_to_collection.java
+++ b/HackVG/model/src/main/java/com/hackvg/model/entities/Belongs_to_collection.java
@@ -1,49 +1,49 @@
-
-package com.hackvg.model.entities;
-
-public class Belongs_to_collection {
- private String backdrop_path;
- private Number id;
- private String name;
- private String poster_path;
-
- public String getBackdrop_path() {
-
- return this.backdrop_path;
- }
-
- public void setBackdrop_path(String backdrop_path) {
-
- this.backdrop_path = backdrop_path;
- }
-
- public Number getId() {
-
- return this.id;
- }
-
- public void setId(Number id) {
-
- this.id = id;
- }
-
- public String getName() {
-
- return this.name;
- }
-
- public void setName(String name) {
-
- this.name = name;
- }
-
- public String getPoster_path() {
-
- return this.poster_path;
- }
-
- public void setPoster_path(String poster_path) {
-
- this.poster_path = poster_path;
- }
-}
+
+package com.hackvg.model.entities;
+
+public class Belongs_to_collection {
+ private String backdrop_path;
+ private Number id;
+ private String name;
+ private String poster_path;
+
+ public String getBackdrop_path() {
+
+ return this.backdrop_path;
+ }
+
+ public void setBackdrop_path(String backdrop_path) {
+
+ this.backdrop_path = backdrop_path;
+ }
+
+ public Number getId() {
+
+ return this.id;
+ }
+
+ public void setId(Number id) {
+
+ this.id = id;
+ }
+
+ public String getName() {
+
+ return this.name;
+ }
+
+ public void setName(String name) {
+
+ this.name = name;
+ }
+
+ public String getPoster_path() {
+
+ return this.poster_path;
+ }
+
+ public void setPoster_path(String poster_path) {
+
+ this.poster_path = poster_path;
+ }
+}
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/Genres.java b/HackVG/model/src/main/java/com/hackvg/model/entities/Genres.java
old mode 100755
new mode 100644
index c4f0eeb..6afd49b
--- a/HackVG/model/src/main/java/com/hackvg/model/entities/Genres.java
+++ b/HackVG/model/src/main/java/com/hackvg/model/entities/Genres.java
@@ -1,20 +1,20 @@
-
-package com.hackvg.model.entities;
-
-public class Genres{
- private Number id;
- private String name;
-
- public Number getId(){
- return this.id;
- }
- public void setId(Number id){
- this.id = id;
- }
- public String getName(){
- return this.name;
- }
- public void setName(String name){
- this.name = name;
- }
-}
+
+package com.hackvg.model.entities;
+
+public class Genres{
+ private Number id;
+ private String name;
+
+ public Number getId(){
+ return this.id;
+ }
+ public void setId(Number id){
+ this.id = id;
+ }
+ public String getName(){
+ return this.name;
+ }
+ public void setName(String name){
+ this.name = name;
+ }
+}
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/Movie.java b/HackVG/model/src/main/java/com/hackvg/model/entities/Movie.java
old mode 100755
new mode 100644
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/MovieDetail.java b/HackVG/model/src/main/java/com/hackvg/model/entities/MovieDetail.java
old mode 100755
new mode 100644
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/MoviesWrapper.java b/HackVG/model/src/main/java/com/hackvg/model/entities/MoviesWrapper.java
old mode 100755
new mode 100644
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/Production_companies.java b/HackVG/model/src/main/java/com/hackvg/model/entities/Production_companies.java
old mode 100755
new mode 100644
index 298890d..aac7ed8
--- a/HackVG/model/src/main/java/com/hackvg/model/entities/Production_companies.java
+++ b/HackVG/model/src/main/java/com/hackvg/model/entities/Production_companies.java
@@ -1,27 +1,27 @@
-
-package com.hackvg.model.entities;
-
-public class Production_companies {
- private Number id;
- private String name;
-
- public Number getId() {
-
- return this.id;
- }
-
- public void setId(Number id) {
-
- this.id = id;
- }
-
- public String getName() {
-
- return this.name;
- }
-
- public void setName(String name) {
-
- this.name = name;
- }
-}
+
+package com.hackvg.model.entities;
+
+public class Production_companies {
+ private Number id;
+ private String name;
+
+ public Number getId() {
+
+ return this.id;
+ }
+
+ public void setId(Number id) {
+
+ this.id = id;
+ }
+
+ public String getName() {
+
+ return this.name;
+ }
+
+ public void setName(String name) {
+
+ this.name = name;
+ }
+}
diff --git a/HackVG/model/src/main/java/com/hackvg/model/entities/TvShow.java b/HackVG/model/src/main/java/com/hackvg/model/entities/TvShow.java
old mode 100755
new mode 100644
index 9134e06..201031d
--- a/HackVG/model/src/main/java/com/hackvg/model/entities/TvShow.java
+++ b/HackVG/model/src/main/java/com/hackvg/model/entities/TvShow.java
@@ -1,135 +1,135 @@
-
-package com.hackvg.model.entities;
-
-import java.util.List;
-
-
-public class TvShow {
- private String backdrop_path;
- private String first_air_date;
- private Number id;
- private String name;
- private List origin_country;
- private String original_name;
- private Number popularity;
- private String poster_path;
- private Number vote_average;
- private Number vote_count;
-
- public String getBackdrop_path() {
-
- return this.backdrop_path;
- }
-
- public void setBackdrop_path(String backdrop_path) {
-
- this.backdrop_path = backdrop_path;
- }
-
- public String getFirst_air_date() {
-
- return this.first_air_date;
- }
-
- public void setFirst_air_date(String first_air_date) {
-
- this.first_air_date = first_air_date;
- }
-
- public Number getId() {
-
- return this.id;
- }
-
- public void setId(Number id) {
-
- this.id = id;
- }
-
- public String getName() {
-
- return this.name;
- }
-
- public void setName(String name) {
-
- this.name = name;
- }
-
- public List getOrigin_country() {
-
- return this.origin_country;
- }
-
- public void setOrigin_country(List origin_country) {
-
- this.origin_country = origin_country;
- }
-
- public String getOriginal_name() {
-
- return this.original_name;
- }
-
- public void setOriginal_name(String original_name) {
-
- this.original_name = original_name;
- }
-
- public Number getPopularity() {
-
- return this.popularity;
- }
-
- public void setPopularity(Number popularity) {
-
- this.popularity = popularity;
- }
-
- public String getPoster_path() {
-
- return this.poster_path;
- }
-
- public void setPoster_path(String poster_path) {
-
- this.poster_path = poster_path;
- }
-
- public Number getVote_average() {
-
- return this.vote_average;
- }
-
- public void setVote_average(Number vote_average) {
-
- this.vote_average = vote_average;
- }
-
- public Number getVote_count() {
-
- return this.vote_count;
- }
-
- public void setVote_count(Number vote_count) {
-
- this.vote_count = vote_count;
- }
-
- @Override
- public String toString() {
-
- return "TvShow{" +
- "backdrop_path='" + backdrop_path + '\'' +
- ", first_air_date='" + first_air_date + '\'' +
- ", id=" + id +
- ", name='" + name + '\'' +
- ", origin_country=" + origin_country +
- ", original_name='" + original_name + '\'' +
- ", popularity=" + popularity +
- ", poster_path='" + poster_path + '\'' +
- ", vote_average=" + vote_average +
- ", vote_count=" + vote_count +
- '}';
- }
-}
+
+package com.hackvg.model.entities;
+
+import java.util.List;
+
+
+public class TvShow {
+ private String backdrop_path;
+ private String first_air_date;
+ private Number id;
+ private String name;
+ private List origin_country;
+ private String original_name;
+ private Number popularity;
+ private String poster_path;
+ private Number vote_average;
+ private Number vote_count;
+
+ public String getBackdrop_path() {
+
+ return this.backdrop_path;
+ }
+
+ public void setBackdrop_path(String backdrop_path) {
+
+ this.backdrop_path = backdrop_path;
+ }
+
+ public String getFirst_air_date() {
+
+ return this.first_air_date;
+ }
+
+ public void setFirst_air_date(String first_air_date) {
+
+ this.first_air_date = first_air_date;
+ }
+
+ public Number getId() {
+
+ return this.id;
+ }
+
+ public void setId(Number id) {
+
+ this.id = id;
+ }
+
+ public String getName() {
+
+ return this.name;
+ }
+
+ public void setName(String name) {
+
+ this.name = name;
+ }
+
+ public List getOrigin_country() {
+
+ return this.origin_country;
+ }
+
+ public void setOrigin_country(List origin_country) {
+
+ this.origin_country = origin_country;
+ }
+
+ public String getOriginal_name() {
+
+ return this.original_name;
+ }
+
+ public void setOriginal_name(String original_name) {
+
+ this.original_name = original_name;
+ }
+
+ public Number getPopularity() {
+
+ return this.popularity;
+ }
+
+ public void setPopularity(Number popularity) {
+
+ this.popularity = popularity;
+ }
+
+ public String getPoster_path() {
+
+ return this.poster_path;
+ }
+
+ public void setPoster_path(String poster_path) {
+
+ this.poster_path = poster_path;
+ }
+
+ public Number getVote_average() {
+
+ return this.vote_average;
+ }
+
+ public void setVote_average(Number vote_average) {
+
+ this.vote_average = vote_average;
+ }
+
+ public Number getVote_count() {
+
+ return this.vote_count;
+ }
+
+ public void setVote_count(Number vote_count) {
+
+ this.vote_count = vote_count;
+ }
+
+ @Override
+ public String toString() {
+
+ return "TvShow{" +
+ "backdrop_path='" + backdrop_path + '\'' +
+ ", first_air_date='" + first_air_date + '\'' +
+ ", id=" + id +
+ ", name='" + name + '\'' +
+ ", origin_country=" + origin_country +
+ ", original_name='" + original_name + '\'' +
+ ", popularity=" + popularity +
+ ", poster_path='" + poster_path + '\'' +
+ ", vote_average=" + vote_average +
+ ", vote_count=" + vote_count +
+ '}';
+ }
+}
diff --git a/README.md b/README.md
deleted file mode 100644
index dd6e285..0000000
--- a/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-This projects support a series of articles about how to setup an android environment to develop an scalable, maintainable and testable projects.
-
-### A useful stack on android
-
-- [Architecture](http://saulmm.github.io/2015/02/02/A%20useful%20stack%20on%20android%20%231,%20architecture/)
-
-- [User interface](http://saulmm.github.io/a-useful-stack-on-android-2-user-interface/)
-
-- [Compatibility](http://saulmm.github.io/a-useful-stack-on-android-3-compatibility/)
-
-### Screenshots
-
-![](http://androcode.es/wp-content/uploads/2015/03/family2.png)
-
-![](http://androcode.es/wp-content/uploads/2015/03/detailFamily-e1426180053215.png)
\ No newline at end of file