io.getstream.core.utils.Enrichment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream-java Show documentation
Show all versions of stream-java Show documentation
Stream Feeds Java Client for backend and android integrations
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