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

org.camunda.feel.playground.sevice.MixpanelProperties Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package org.camunda.feel.playground.sevice;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;

@Configuration
@ConditionalOnProperty(prefix = "playground.tracking", name = "enabled", havingValue = "true")
public class MixpanelProperties {

  @Value("${MIXPANEL_PROJECT_TOKEN}")
  private String projectToken;

  public String getProjectToken() {
    return projectToken;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy