org.picketlink.identity.federation.web.config.SPMetadataProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of picketlink-federation
Show all versions of picketlink-federation
PicketLink Federation Core contains the core infrastructure code
package org.picketlink.identity.federation.web.config;
import org.picketlink.common.ErrorCodes;
import org.picketlink.config.federation.IDPType;
import org.picketlink.config.federation.SPType;
import org.picketlink.common.exceptions.ProcessingException;
/**
* Author: tito
*/
public class SPMetadataProvider extends AbstractSAMLConfigurationProvider{
@Override
public IDPType getIDPConfiguration() throws ProcessingException {
throw new RuntimeException(ErrorCodes.ILLEGAL_METHOD_CALLED);
}
@Override
public SPType getSPConfiguration() throws ProcessingException {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
}