![JAR search and dependency download from the Maven repository](/logo.png)
org.openid4java.consumer.ConsumerAssociationStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openid4java-shaded Show documentation
Show all versions of openid4java-shaded Show documentation
openid4java (Third party dependencies shaded)
/*
* Copyright 2006-2008 Sxip Identity Corporation
*/
package org.openid4java.consumer;
import com.google.inject.ImplementedBy;
import org.openid4java.association.Association;
/**
* @author Marius Scurtescu, Johnny Bufu
*/
@ImplementedBy(InMemoryConsumerAssociationStore.class)
public interface ConsumerAssociationStore
{
public void save(String opUrl, Association association);
public Association load(String opUrl, String handle);
public Association load(String opUrl);
public void remove(String opUrl, String handle);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy