
com.daedafusion.security.authentication.impl.DefaultAssociationPrincipal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
The newest version!
package com.daedafusion.security.authentication.impl;
import org.apache.log4j.Logger;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
/**
* Created by mphilpot on 7/15/14.
*/
public class DefaultAssociationPrincipal extends AbstractPrincipal
{
private static final Logger log = Logger.getLogger(DefaultAssociationPrincipal.class);
public DefaultAssociationPrincipal(UUID instanceId, Type type, Map> attributes, String signature)
{
super(instanceId, type, attributes, signature);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy