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

br.com.m4rc310.gql.properties.MGraphQLProperty Maven / Gradle / Ivy

The newest version!
package br.com.m4rc310.gql.properties;

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

import lombok.Data;

/**
 * 

MGraphQLProperty class.

* * @author marcelo * @version $Id: $Id */ @Data @ConfigurationProperties("br.com.m4rc310.gql") public class MGraphQLProperty { /** Constant ENABLE_GRAPHQL="br.com.m4rc310.gql.enable" */ public static final String ENABLE_GRAPHQL = "br.com.m4rc310.gql.enable"; private boolean enable; private String path; private String classname; private Security security = new Security(); @Data public class Security{ private boolean enable; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy