com.capitalone.dashboard.service.ServiceAccountService Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy