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

com.arextest.web.model.contract.contracts.config.replay.ComparisonEncryptionConfiguration Maven / Gradle / Ivy

The newest version!
package com.arextest.web.model.contract.contracts.config.replay;

import java.util.List;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.ToString;
import org.springframework.util.CollectionUtils;

@Data
@NoArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class ComparisonEncryptionConfiguration extends AbstractComparisonDetailsConfiguration {

  List path;

  @Override
  public void validParameters() throws Exception {
    super.validParameters();
    if (CollectionUtils.isEmpty(path)) {
      throw new Exception("path cannot be empty");
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy