All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hmsonline.dropwizard.spring.SpringServiceConfiguration Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
// 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy