This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| Vagrant.configure(2) do |config| | |
| config.vm.box = "aws" | |
| config.vm.synced_folder ".", "/vagrant", disabled: true | |
| config.vm.provider :aws do |aws, override| | |
| aws.access_key_id = ENV['AWS_ACCESS_KEY'] | |
| aws.secret_access_key = ENV['AWS_SECRET_KEY'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package snippets.model; | |
| public class Person { | |
| private String id; | |
| private String name; | |
| private int age; | |
| public Person(String id, String name, int age) { | |
| this.id = id; |
OlderNewer