All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openid4java.consumer.ConsumerAssociationStore Maven / Gradle / Ivy

The newest version!
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy