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

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

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

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

import java.util.List;

public interface FeatureFlagService {
    String createOrUpdateFlags(String json) ;
    List getFeatureFlags();
    void deleteFlags(ObjectId id);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy