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

com.arextest.storage.service.config.impl.DynamicClassConfigurableHandler Maven / Gradle / Ivy

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

import com.arextest.config.model.dto.record.DynamicClassConfiguration;
import com.arextest.config.repository.ConfigRepositoryProvider;
import com.arextest.storage.service.config.AbstractConfigurableHandler;
import org.apache.commons.collections4.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 * @author jmo
 * @since 2022/1/22
 */
@Component
public final class DynamicClassConfigurableHandler extends
    AbstractConfigurableHandler {

  protected DynamicClassConfigurableHandler(
      @Autowired ConfigRepositoryProvider repositoryProvider) {
    super(repositoryProvider);
  }

  @Override
  public boolean insert(DynamicClassConfiguration configuration) {
    if (StringUtils.isEmpty(configuration.getAppId())) {
      return false;
    }
    if (StringUtils.isEmpty(configuration.getFullClassName())) {
      return false;
    }
    return super.insert(configuration);
  }

  public boolean removeByAppId(String appId) {
    return CollectionUtils.isEmpty(super.useResultAsList(appId))
        || repositoryProvider.removeByAppId(appId);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy