I hereby claim:
- I am Leward on github.
- I am leward (https://keybase.io/leward) on keybase.
- I have a public key whose fingerprint is 4F28 C39A 0F75 32F3 5B32 D94A 506F CD6F 99C3 69B6
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
trait MissionDefinition { | |
UUID id = UUID.randomUUID() | |
String label | |
String description | |
Integer teamSize | |
LocalDate startDate | |
LocalDate endDate | |
ActivityType activityType | |
String salesForceId | |
} |
2016-09-20 22:25:59.916+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime enabled, bootstrapping... | |
2016-09-20 22:25:59.956+0000 INFO [c.g.r.b.RuntimeKernelExtension] Bootstrapping module with order 1, ID timetree, using com.graphaware.module.timetree.module.TimeTreeModuleBootstrapper | |
2016-09-20 22:26:00.080+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime bootstrapped, starting the Runtime... | |
2016-09-20 22:26:00.500+0000 INFO [c.g.r.b.RuntimeKernelExtension] GraphAware Runtime automatically started. | |
[name:db.constraints, signature:db.constraints() :: (description :: STRING?)] | |
[name:db.indexes, signature:db.indexes() :: (description :: STRING?, state :: STRING?, type :: STRING?)] | |
[name:db.labels, signature:db.labels() :: (label :: STRING?)] | |
[name:db.propertyKeys, signature:db.propertyKeys() :: (propertyKey :: STRING?)] | |
[name:db.relationshipTypes, signature:db.relationshipTypes() :: (relationshipType :: STRING?)] | |
[name:dbms.changePassword, signature:dbms.changePassword(password :: |
package com.example; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.beans.factory.annotation.Value; | |
import org.springframework.cloud.client.loadbalancer.LoadBalancerClient; | |
import org.springframework.hateoas.Resources; | |
import org.springframework.web.bind.annotation.GetMapping; | |
import org.springframework.web.bind.annotation.RestController; | |
import org.springframework.web.client.RestTemplate; |
package io.springtrader.resource; | |
import org.springframework.beans.factory.InitializingBean; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; | |
import org.springframework.cloud.client.loadbalancer.LoadBalanced; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer; | |
import org.springframework.security.oauth2.provider.token.RemoteTokenServices; |
FROM circleci/java:8-jdk | |
ENV RANCHER_COMPOSE_VERSION=v0.12.5 | |
RUN curl -sSL "https://github.com/rancher/rancher-compose/releases/download/${RANCHER_COMPOSE_VERSION}/rancher-compose-linux-amd64-${RANCHER_COMPOSE_VERSION}.tar.gz" | tar -xzp -C /usr/local/bin/ --strip-components=2 | |
rm -rf /var/cache/* | |