use of org.finos.symphony.toolkit.spring.app.id.GeneratingAppIdentityProvider in project spring-bot by finos.
the class SymphonyAppConfig method appIdentity.
@Bean(name = APP_IDENTITY_BEAN)
@ConditionalOnMissingBean(name = APP_IDENTITY_BEAN)
public SymphonyIdentity appIdentity() throws Exception {
GeneratingAppIdentityProvider provider = new GeneratingAppIdentityProvider(appProperties(), loader, objectMapper);
SymphonyIdentity out = provider.getIdentity();
return out;
}
Aggregations