├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── dockerfile ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── appsdeveloperblog │ │ └── photoapp │ │ └── api │ │ └── albums │ │ ├── PhotoAppApiAlbumsApplication.java │ │ ├── data │ │ └── AlbumEntity.java │ │ ├── io │ │ └── controllers │ │ │ └── AlbumsController.java │ │ ├── service │ │ ├── AlbumsService.java │ │ └── AlbumsServiceImpl.java │ │ └── ui │ │ └── model │ │ └── AlbumResponseModel.java └── resources │ └── application.properties └── test └── java └── com └── appsdeveloperblog └── photoapp └── api └── albums └── PhotoAppApiAlbums └── PhotoAppApiAlbumsApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/dockerfile -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/appsdeveloperblog/photoapp/api/albums/PhotoAppApiAlbumsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/java/com/appsdeveloperblog/photoapp/api/albums/PhotoAppApiAlbumsApplication.java -------------------------------------------------------------------------------- /src/main/java/com/appsdeveloperblog/photoapp/api/albums/data/AlbumEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/java/com/appsdeveloperblog/photoapp/api/albums/data/AlbumEntity.java -------------------------------------------------------------------------------- /src/main/java/com/appsdeveloperblog/photoapp/api/albums/io/controllers/AlbumsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/java/com/appsdeveloperblog/photoapp/api/albums/io/controllers/AlbumsController.java -------------------------------------------------------------------------------- /src/main/java/com/appsdeveloperblog/photoapp/api/albums/service/AlbumsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/java/com/appsdeveloperblog/photoapp/api/albums/service/AlbumsService.java -------------------------------------------------------------------------------- /src/main/java/com/appsdeveloperblog/photoapp/api/albums/service/AlbumsServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/java/com/appsdeveloperblog/photoapp/api/albums/service/AlbumsServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/appsdeveloperblog/photoapp/api/albums/ui/model/AlbumResponseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/java/com/appsdeveloperblog/photoapp/api/albums/ui/model/AlbumResponseModel.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/test/java/com/appsdeveloperblog/photoapp/api/albums/PhotoAppApiAlbums/PhotoAppApiAlbumsApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplyi/PhotoAppApiAlbums/HEAD/src/test/java/com/appsdeveloperblog/photoapp/api/albums/PhotoAppApiAlbums/PhotoAppApiAlbumsApplicationTests.java --------------------------------------------------------------------------------