├── .gitignore ├── .openshift ├── README.md ├── action_hooks │ ├── README.md │ ├── deploy │ ├── start │ └── stop ├── cron │ ├── README.cron │ ├── daily │ │ └── .gitignore │ ├── hourly │ │ └── .gitignore │ ├── minutely │ │ └── .gitignore │ ├── monthly │ │ └── .gitignore │ └── weekly │ │ ├── README │ │ ├── chrono.dat │ │ ├── chronograph │ │ ├── jobs.allow │ │ └── jobs.deny ├── markers │ ├── README.md │ └── java8 └── settings.xml ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src └── main ├── java └── com │ └── aurora │ └── store │ └── tokendispenser │ ├── OkHttpClientAdapter.java │ ├── Server.java │ └── TokenResource.java └── resources └── config.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.gitignore -------------------------------------------------------------------------------- /.openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/README.md -------------------------------------------------------------------------------- /.openshift/action_hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/action_hooks/README.md -------------------------------------------------------------------------------- /.openshift/action_hooks/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/action_hooks/deploy -------------------------------------------------------------------------------- /.openshift/action_hooks/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/action_hooks/start -------------------------------------------------------------------------------- /.openshift/action_hooks/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/action_hooks/stop -------------------------------------------------------------------------------- /.openshift/cron/README.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/cron/README.cron -------------------------------------------------------------------------------- /.openshift/cron/daily/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/hourly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/minutely/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/monthly/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/cron/weekly/README -------------------------------------------------------------------------------- /.openshift/cron/weekly/chrono.dat: -------------------------------------------------------------------------------- 1 | Time And Relative D...n In Execution (Open)Shift! 2 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/chronograph: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "`date`: `cat $(dirname \"$0\")/chrono.dat`" 4 | -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.allow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/cron/weekly/jobs.allow -------------------------------------------------------------------------------- /.openshift/cron/weekly/jobs.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/cron/weekly/jobs.deny -------------------------------------------------------------------------------- /.openshift/markers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/markers/README.md -------------------------------------------------------------------------------- /.openshift/markers/java8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.openshift/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/.openshift/settings.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'token-dispenser' 2 | -------------------------------------------------------------------------------- /src/main/java/com/aurora/store/tokendispenser/OkHttpClientAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/src/main/java/com/aurora/store/tokendispenser/OkHttpClientAdapter.java -------------------------------------------------------------------------------- /src/main/java/com/aurora/store/tokendispenser/Server.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/src/main/java/com/aurora/store/tokendispenser/Server.java -------------------------------------------------------------------------------- /src/main/java/com/aurora/store/tokendispenser/TokenResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/src/main/java/com/aurora/store/tokendispenser/TokenResource.java -------------------------------------------------------------------------------- /src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whyorean/AuroraDispenser/HEAD/src/main/resources/config.properties --------------------------------------------------------------------------------