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

com.arextest.web.model.mapper.YamlDynamicClassMapper Maven / Gradle / Ivy

The newest version!
package com.arextest.web.model.mapper;

import com.arextest.config.model.dto.record.DynamicClassConfiguration;
import com.arextest.web.model.contract.contracts.config.yamlTemplate.entity.DynamicClassTemplateConfig;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;

@Mapper
public interface YamlDynamicClassMapper {

  YamlDynamicClassMapper INSTANCE = Mappers.getMapper(YamlDynamicClassMapper.class);

  DynamicClassTemplateConfig toYaml(DynamicClassConfiguration dynamicClassConfiguration);

  DynamicClassConfiguration fromYaml(DynamicClassTemplateConfig dynamicClassTemplateConfig);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy