org.molgenis.data.security.PackageIdentity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-security Show documentation
Show all versions of molgenis-data-security Show documentation
Security data model and data layer security.
package org.molgenis.data.security;
import org.molgenis.data.meta.model.Package;
import org.springframework.security.acls.domain.ObjectIdentityImpl;
public class PackageIdentity extends ObjectIdentityImpl {
public static final String PACKAGE = "package";
public PackageIdentity(Package aPackage) {
this(aPackage.getId());
}
public PackageIdentity(String packageId) {
super(PACKAGE, packageId);
}
}