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

org.molgenis.data.security.GroupIdentity Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.data.security;

import org.molgenis.data.security.auth.Group;
import org.springframework.security.acls.domain.ObjectIdentityImpl;

public class GroupIdentity extends ObjectIdentityImpl {
  public static final String GROUP = "group";

  public GroupIdentity(String groupName) {
    super(GROUP, groupName);
  }

  public GroupIdentity(Group group) {
    this(group.getName());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy