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

com.arextest.storage.service.config.ConfigurableHandler Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.arextest.storage.service.config;

import java.util.List;

/**
 * @author jmo
 * @since 2022/1/22
 */
public interface ConfigurableHandler extends ViewHandler {

  boolean insert(T configuration);

  boolean remove(T configuration);

  boolean insertList(List configurationList);

  boolean removeList(List configurationList);

  boolean update(T configuration);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy