├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ ├── Apache_Software_License__Version_2_0.xml │ └── profiles_settings.xml ├── dictionaries │ └── bhale.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ └── Application.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── Gemfile ├── Gemfile.lock ├── Paw.paw ├── creating-restful-hypermedia-based-micro-services-with-spring-boot.key ├── Data │ ├── 230ss__235ssB-863.jpg │ ├── 230ss__235ssB-small-864.jpg │ ├── C60_RACING_THBI-882.jpg │ ├── C60_RACING_THBI-small-883.jpg │ ├── Photo 20-07-2010 16 28 10-858.jpg │ ├── Photo 20-07-2010 16 28 10-small-859.jpg │ ├── PresetImageFill0-1.jpg │ ├── PresetImageFill1-2.jpg │ ├── PresetImageFill2-3.jpg │ ├── PresetImageFill3-4.jpg │ ├── PresetImageFill4-5.jpg │ ├── PresetImageFill5-6.jpg │ ├── image1-8.png │ ├── image1-small-9.png │ ├── image2-11.png │ ├── image3-12.png │ ├── image3-small-13.png │ ├── image4-14.png │ ├── mt0@2x-410.jpg │ ├── mt10@2x-429.jpg │ ├── mt1@2x-412.jpg │ ├── mt2@2x-438.jpg │ ├── mt3@2x-444.jpg │ ├── mt4@2x-445.jpg │ ├── mt5@2x-446.jpg │ ├── mt6@2x-425.jpg │ ├── mt7@2x-426.jpg │ ├── mt8@2x-427.jpg │ ├── mt9@2x-428.jpg │ ├── st0-411.jpg │ ├── st1-721.jpg │ ├── st11-1137.jpg │ ├── st12-1246.jpg │ ├── st13-1251.jpg │ ├── st14-1274.jpg │ ├── st15-1287.jpg │ ├── st16-1294.jpg │ ├── st17-1490.jpg │ ├── st18-1346.jpg │ ├── st19-1396.jpg │ ├── st2-755.jpg │ ├── st20-1442.jpg │ ├── st21-1485.jpg │ ├── st22-1488.jpg │ ├── st23-1525.jpg │ ├── st24-1565.jpg │ ├── st25-1663.jpg │ ├── st26-1665.jpg │ ├── st27-1698.jpg │ ├── st28-1701.jpg │ ├── st29-1727.jpg │ ├── st3-645.jpg │ ├── st3-788.jpg │ ├── st4-853.jpg │ ├── st5-1079.jpg │ ├── st5-905.jpg │ ├── st6-1100.jpg │ ├── st6-999.jpg │ ├── st7-1093.jpg │ └── st8-1116.jpg ├── Index.zip ├── Metadata │ ├── BuildVersionHistory.plist │ ├── DocumentIdentifier │ └── Properties.plist ├── preview-micro.jpg ├── preview-web.jpg └── preview.jpg ├── creating-restful-hypermedia-based-micro-services-with-spring-boot.pdf ├── lets-make-a-deal.rb ├── manifest.yml ├── micro-service.iml ├── pom.xml └── src └── main ├── java └── com │ └── nebhale │ └── springone2014 │ ├── Application.java │ ├── model │ ├── Door.java │ ├── DoorContent.java │ ├── DoorDoesNotExistException.java │ ├── DoorStatus.java │ ├── Game.java │ ├── GameStatus.java │ └── IllegalTransitionException.java │ ├── repository │ ├── GameDoesNotExistException.java │ ├── GameRepository.java │ └── InMemoryGameRepository.java │ └── web │ ├── DoorsResourceAssembler.java │ ├── GameResourceAssembler.java │ └── GamesController.java └── resources └── logback.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | micro-service -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/Apache_Software_License__Version_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/copyright/Apache_Software_License__Version_2_0.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/dictionaries/bhale.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/dictionaries/bhale.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/runConfigurations/Application.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Paw.paw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/Paw.paw -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/230ss__235ssB-863.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/230ss__235ssB-863.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/230ss__235ssB-small-864.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/230ss__235ssB-small-864.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/C60_RACING_THBI-882.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/C60_RACING_THBI-882.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/C60_RACING_THBI-small-883.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/C60_RACING_THBI-small-883.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/Photo 20-07-2010 16 28 10-858.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/Photo 20-07-2010 16 28 10-858.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/Photo 20-07-2010 16 28 10-small-859.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/Photo 20-07-2010 16 28 10-small-859.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill0-1.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill1-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill1-2.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill2-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill2-3.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill3-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill3-4.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill4-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill4-5.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill5-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/PresetImageFill5-6.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image1-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image1-8.png -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image1-small-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image1-small-9.png -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image2-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image2-11.png -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image3-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image3-12.png -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image3-small-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image3-small-13.png -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image4-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/image4-14.png -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt0@2x-410.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt0@2x-410.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt10@2x-429.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt10@2x-429.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt1@2x-412.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt1@2x-412.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt2@2x-438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt2@2x-438.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt3@2x-444.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt3@2x-444.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt4@2x-445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt4@2x-445.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt5@2x-446.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt5@2x-446.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt6@2x-425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt6@2x-425.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt7@2x-426.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt7@2x-426.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt8@2x-427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt8@2x-427.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt9@2x-428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/mt9@2x-428.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st0-411.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st0-411.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st1-721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st1-721.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st11-1137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st11-1137.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st12-1246.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st12-1246.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st13-1251.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st13-1251.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st14-1274.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st14-1274.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st15-1287.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st15-1287.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st16-1294.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st16-1294.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st17-1490.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st17-1490.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st18-1346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st18-1346.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st19-1396.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st19-1396.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st2-755.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st2-755.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st20-1442.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st20-1442.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st21-1485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st21-1485.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st22-1488.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st22-1488.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st23-1525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st23-1525.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st24-1565.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st24-1565.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st25-1663.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st25-1663.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st26-1665.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st26-1665.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st27-1698.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st27-1698.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st28-1701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st28-1701.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st29-1727.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st29-1727.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st3-645.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st3-645.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st3-788.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st3-788.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st4-853.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st4-853.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st5-1079.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st5-1079.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st5-905.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st5-905.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st6-1100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st6-1100.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st6-999.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st6-999.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st7-1093.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st7-1093.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st8-1116.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Data/st8-1116.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Index.zip -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Metadata/BuildVersionHistory.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Metadata/BuildVersionHistory.plist -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Metadata/DocumentIdentifier: -------------------------------------------------------------------------------- 1 | 147A23B9-8F05-4452-BF8D-80969AF36F0E -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Metadata/Properties.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/Metadata/Properties.plist -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/preview-micro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/preview-micro.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/preview-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/preview-web.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.key/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.key/preview.jpg -------------------------------------------------------------------------------- /creating-restful-hypermedia-based-micro-services-with-spring-boot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/creating-restful-hypermedia-based-micro-services-with-spring-boot.pdf -------------------------------------------------------------------------------- /lets-make-a-deal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/lets-make-a-deal.rb -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/manifest.yml -------------------------------------------------------------------------------- /micro-service.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/micro-service.iml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/Application.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/Door.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/Door.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/DoorContent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/DoorContent.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/DoorDoesNotExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/DoorDoesNotExistException.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/DoorStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/DoorStatus.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/Game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/Game.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/GameStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/GameStatus.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/model/IllegalTransitionException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/model/IllegalTransitionException.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/repository/GameDoesNotExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/repository/GameDoesNotExistException.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/repository/GameRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/repository/GameRepository.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/repository/InMemoryGameRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/repository/InMemoryGameRepository.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/web/DoorsResourceAssembler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/web/DoorsResourceAssembler.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/web/GameResourceAssembler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/web/GameResourceAssembler.java -------------------------------------------------------------------------------- /src/main/java/com/nebhale/springone2014/web/GamesController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/java/com/nebhale/springone2014/web/GamesController.java -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebhale/spring-one-2014/HEAD/src/main/resources/logback.xml --------------------------------------------------------------------------------