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

net.smartcosmos.extension.stormpath.config.StormpathProperties Maven / Gradle / Ivy

The newest version!
package net.smartcosmos.extension.stormpath.config;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

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

/**
 * Initially created by SMART COSMOS Team on July 25, 2016.
 */
@Data
@NoArgsConstructor
@Builder
@AllArgsConstructor
@ConfigurationProperties("smartcosmos.stormpath")
public class StormpathProperties {

    private String applicationName;
    private ApiKey apiKey;

    @Data
    @AllArgsConstructor
    @NoArgsConstructor
    @Builder
    public static class ApiKey {

        private String id;
        private String secret;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy