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

com.segment.analytics.autoconfigure.SegmentProperties Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.segment.analytics.autoconfigure;

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

/**
 * Configuration properties for the Segment Analytics client. Since the client
 * only supports writes at this point, the write key is the only (and required)
 * property.
 *
 * @author Christopher Smith
 */
@ConfigurationProperties("segment.analytics")
public class SegmentProperties {

  private String writeKey;

  public String getWriteKey() {
    return writeKey;
  }

  public void setWriteKey(String writeKey) {
    this.writeKey = writeKey;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy