com.iovation.launchkey.sdk.example.springmvc.LaunchkeySdkConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-examples-spring-mvc Show documentation
Show all versions of sdk-examples-spring-mvc Show documentation
Example application for using the LaunchKey SDK in a Spring MVC application
package com.iovation.launchkey.sdk.example.springmvc;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
@Component
@ConfigurationProperties(prefix = "lk")
public class LaunchkeySdkConfig {
private String baseUrl;
private String serviceId;
private String privateKeyLocation;
public void setBaseUrl(String baseUrl) {
this.baseUrl = baseUrl;
}
public String getBaseUrl() {
return baseUrl;
}
public void setServiceId(String serviceId) {
this.serviceId = serviceId;
}
public String getServiceId() {
return serviceId;
}
public void setPrivateKeyLocation(String privateKeyLocation) {
this.privateKeyLocation = privateKeyLocation;
}
public String getPrivateKeyLocation() {
return privateKeyLocation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy