
org.mule.module.spring.security.SpringAuthenticationAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mule-module-spring-security Show documentation
Show all versions of mule-module-spring-security Show documentation
Mule Spring Security support exposes Spring Security Authentication providers
and Method interceptors to authenticate event traffic via endpoints and provide method level
authorization on components.
The newest version!
/*
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.module.spring.security;
import org.mule.api.MuleEvent;
import org.mule.api.security.Authentication;
import java.util.Map;
import org.springframework.security.core.GrantedAuthority;
public class SpringAuthenticationAdapter implements Authentication
{
private static final long serialVersionUID = -5906282218126929871L;
private org.springframework.security.core.Authentication delegate;
private Map properties;
transient private MuleEvent event;
public SpringAuthenticationAdapter(org.springframework.security.core.Authentication authentication)
{
this(authentication, null);
}
public SpringAuthenticationAdapter(org.springframework.security.core.Authentication authentication, Map properties)
{
this(authentication, properties, null);
}
public SpringAuthenticationAdapter(org.springframework.security.core.Authentication authentication, Map properties, MuleEvent event)
{
this.delegate = authentication;
this.properties = properties;
this.event = event;
}
@Override
public void setAuthenticated(boolean b)
{
delegate.setAuthenticated(b);
}
@Override
public boolean isAuthenticated()
{
return delegate.isAuthenticated();
}
public org.springframework.security.core.GrantedAuthority[] getAuthorities()
{
return delegate.getAuthorities().toArray(new GrantedAuthority[delegate.getAuthorities().size()]);
}
@Override
public Object getCredentials()
{
return delegate.getCredentials();
}
public Object getDetails()
{
return delegate.getDetails();
}
@Override
public Object getPrincipal()
{
return delegate.getPrincipal();
}
@Override
public int hashCode()
{
return delegate.hashCode();
}
@Override
public boolean equals(Object another)
{
return delegate.equals(another);
}
public String getName()
{
return delegate.getName();
}
public org.springframework.security.core.Authentication getDelegate()
{
return delegate;
}
@Override
public Map getProperties()
{
return properties;
}
@Override
public void setProperties(Map properties)
{
this.properties = properties;
}
@Override
public MuleEvent getEvent()
{
return event;
}
public void setEvent(MuleEvent muleEvent)
{
this.event = muleEvent;
}
}