/** * Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/) * and/or other contributors as indicated by the @authors tag. See the * copyright.txt file in the distribution for a full listing of all * contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.mapstruct.ap.test.nestedbeans.mixed; import javax.annotation.Generated; import org.mapstruct.ap.test.nestedbeans.mixed._target.FishDto; import org.mapstruct.ap.test.nestedbeans.mixed._target.FishTankDto; import org.mapstruct.ap.test.nestedbeans.mixed._target.WaterQualityDto; import org.mapstruct.ap.test.nestedbeans.mixed._target.WaterQualityOrganisationDto; import org.mapstruct.ap.test.nestedbeans.mixed._target.WaterQualityReportDto; import org.mapstruct.ap.test.nestedbeans.mixed.source.Fish; import org.mapstruct.ap.test.nestedbeans.mixed.source.FishTank; import org.mapstruct.ap.test.nestedbeans.mixed.source.WaterQuality; import org.mapstruct.ap.test.nestedbeans.mixed.source.WaterQualityReport; @Generated( value = "org.mapstruct.ap.MappingProcessor", date = "2017-02-19T16:25:03+0100", comments = "version: , compiler: javac, environment: Java 1.8.0_112 (Oracle Corporation)" ) public class FishTankMapperExpressionImpl implements FishTankMapperExpression { @Override public FishTankDto map(FishTank source) { if ( source == null ) { return null; } FishTankDto fishTankDto = new FishTankDto(); fishTankDto.setFish( fishToFishDto( source.getFish() ) ); fishTankDto.setName( source.getName() ); fishTankDto.setQuality( waterQualityToWaterQualityDto( source.getQuality() ) ); return fishTankDto; } protected FishDto fishToFishDto(Fish fish) { if ( fish == null ) { return null; } FishDto fishDto = new FishDto(); fishDto.setKind( fish.getType() ); fishDto.setName( "Jaws" ); return fishDto; } protected WaterQualityOrganisationDto waterQualityReportToWaterQualityOrganisationDto(WaterQualityReport waterQualityReport) { if ( waterQualityReport == null ) { return null; } WaterQualityOrganisationDto waterQualityOrganisationDto = new WaterQualityOrganisationDto(); waterQualityOrganisationDto.setName( "Dunno" ); return waterQualityOrganisationDto; } protected WaterQualityReportDto waterQualityReportToWaterQualityReportDto(WaterQualityReport waterQualityReport) { if ( waterQualityReport == null ) { return null; } WaterQualityReportDto waterQualityReportDto = new WaterQualityReportDto(); waterQualityReportDto.setVerdict( waterQualityReport.getVerdict() ); waterQualityReportDto.setOrganisation( waterQualityReportToWaterQualityOrganisationDto( waterQualityReport ) ); return waterQualityReportDto; } protected WaterQualityDto waterQualityToWaterQualityDto(WaterQuality waterQuality) { if ( waterQuality == null ) { return null; } WaterQualityDto waterQualityDto = new WaterQualityDto(); waterQualityDto.setReport( waterQualityReportToWaterQualityReportDto( waterQuality.getReport() ) ); return waterQualityDto; } }