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

com.reger.swagger.properties.Swagger2Properties Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.reger.swagger.properties;

import java.util.Map;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(Swagger2Properties.prefix)
public class Swagger2Properties {
	public static final String prefix = "spring";

	private Map swaggerGroup;

	public Map getSwaggerGroup() {
		return swaggerGroup;
	}

	public void setSwaggerGroup(Map swaggerGroup) {
		this.swaggerGroup = swaggerGroup;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy