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

ca.ibodrov.mica.server.data.UserEntryUtils Maven / Gradle / Ivy

There is a newer version: 0.0.25
Show newest version
package ca.ibodrov.mica.server.data;

import com.walmartlabs.concord.server.user.UserEntry;

public final class UserEntryUtils {

    public static UserEntry systemUser() {
        return user("system");
    }

    public static UserEntry user(String username) {
        return new UserEntry(null, username, null, null, null, null, null, null, false, null);
    }

    private UserEntryUtils() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy