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

com.hmsonline.dropwizard.spring.web.ServletConfiguration Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy