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

ar.com.system.afip.wsaa.data.api.CredentialsDao Maven / Gradle / Ivy

package ar.com.system.afip.wsaa.data.api;

import ar.com.system.afip.wsaa.business.api.Service;
import ar.com.system.afip.wsaa.service.api.Credentials;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public interface CredentialsDao {
    void saveCredentials(@Nonnull Credentials credentials,
                         @Nonnull Service service);

    @Nullable
    Credentials loadCredentials(@Nonnull Service service);

    void deleteCredentials(@Nonnull Service service);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy