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

io.getstream.core.utils.Enrichment Maven / Gradle / Ivy

There is a newer version: 3.15.0
Show newest version
package io.getstream.core.utils;

public final class Enrichment {
  private Enrichment() {
    /* nothing to see here */
  }

  public static String createCollectionReference(String collection, String id) {
    return String.format("SO:%s:%s", collection, id);
  }

  public static String createUserReference(String id) {
    return String.format("SU:%s", id);
  }

  public static String createActivityReference(String id) {
    return String.format("SA:%s", id);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy