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

com.capitalone.dashboard.service.ServiceAccountService Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.service;

import com.capitalone.dashboard.model.ServiceAccount;
import org.bson.types.ObjectId;

import java.util.Collection;

public interface ServiceAccountService {
    String createAccount(String serviceAccount, String fileNames) ;
    String updateAccount(String serviceAccount, String fileNames, ObjectId id);
    Collection getAllServiceAccounts();
    void deleteAccount(ObjectId id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy