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

com.minlia.rocket.swagger.properties.SwaggerConfigurationProperties Maven / Gradle / Ivy

There is a newer version: 2.0.4.1.RELEASE
Show newest version
package com.minlia.rocket.swagger.properties;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties(prefix = "system.swagger", ignoreInvalidFields = true)
@Data
@NoArgsConstructor
@AllArgsConstructor
public class SwaggerConfigurationProperties {

  String title = "APPLICATION.NAME";

  String version = "APPLICATION.VERSION";

  String path = "/api/.*";
  String description = "Minlia Cloud Api Documentations";
  String contact = "[email protected]";

  String keyName = "X-Auth-Token";
  String passAs = "header";

  boolean redirect = false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy