com.hmsonline.dropwizard.spring.SpringServiceConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-spring Show documentation
Show all versions of dropwizard-spring Show documentation
Spring Integration for DropWizard
// Copyright (c) 2012 Health Market Science, Inc.
package com.hmsonline.dropwizard.spring;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.yammer.dropwizard.config.Configuration;
public class SpringServiceConfiguration extends Configuration {
@NotNull
@JsonProperty
private SpringConfiguration spring;
@NotNull
@JsonProperty
private ApiMetadata apiMetadata = new ApiMetadata();
public SpringConfiguration getSpring(){
return this.spring;
}
public ApiMetadata getApiMetadata(){
return this.apiMetadata;
}
}