com.hmsonline.dropwizard.spring.web.ServletConfiguration 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) 2014 Health Market Science, Inc.
package com.hmsonline.dropwizard.spring.web;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/**
* @author hieunguyen
*
*/
public class ServletConfiguration {
@JsonProperty
private String clazz;
@JsonProperty
private String url;
@JsonProperty
private Map param;
public String getClazz() {
return clazz;
}
public void setClazz(String clazz) {
this.clazz = clazz;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public Map getParam() {
return param;
}
public void setParam(Map param) {
this.param = param;
}
}