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

io.mosip.kernel.emailnotification.config.OpenApiProperties Maven / Gradle / Ivy

The newest version!
package io.mosip.kernel.emailnotification.config;
import java.util.List;

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

import lombok.Data;

@Configuration
@ConfigurationProperties(prefix = "openapi")
@Data
public class OpenApiProperties {
    private InfoProperty info;
    private Service service;
}

@Data
class InfoProperty {
    private String title;
    private String description;
    private String version;
    private LicenseProperty license;
}

@Data
class LicenseProperty {
    private String name;
    private String url;
}

@Data
class Service {
    private List servers;
}

@Data
class Server {
    private String description;
    private String url;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy