
net.smartcosmos.extension.stormpath.config.StormpathProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartcosmos-user-details-stormpath Show documentation
Show all versions of smartcosmos-user-details-stormpath Show documentation
Retrieves User Detail Information for use in Authentication from Stormpath
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