ActionMapperImpl.java

package org.openwms.tms.routing.ui.impl;

import java.util.ArrayList;
import java.util.List;
import javax.annotation.processing.Generated;
import org.openwms.tms.routing.Action;
import org.openwms.tms.routing.RouteImpl;
import org.openwms.tms.routing.ui.api.ActionVO;
import org.springframework.stereotype.Component;

@Generated(
    value = "org.mapstruct.ap.MappingProcessor"
)
@Component
class ActionMapperImpl extends ActionMapper {

    @Override
    public Action convertVO(ActionVO vo) {
        if ( vo == null ) {
            return null;
        }

        Action action = new Action();

        action.setPersistentKey( vo.getKey() );
        action.setProgramKey( vo.getProgram() );
        action.setName( vo.getName() );
        action.setLocationKey( vo.getLocation() );
        action.setLocationGroupName( vo.getLocationGroupName() );
        action.setActionType( vo.getType() );
        action.setDescription( vo.getDescription() );
        action.setEnabled( vo.isEnabled() );

        action.setRoute( super.srv.findByRouteId(vo.getRoute()).orElseThrow() );

        return action;
    }

    @Override
    public ActionVO convertEO(Action eo) {
        if ( eo == null ) {
            return null;
        }

        ActionVO actionVO = new ActionVO();

        if ( eo.hasPersistentKey() ) {
            actionVO.setKey( eo.getPersistentKey() );
        }
        actionVO.setRoute( eoRouteRouteId( eo ) );
        actionVO.setType( eo.getActionType() );
        actionVO.setProgram( eo.getProgramKey() );
        actionVO.setLocation( eo.getLocationKey() );
        actionVO.setOl( eo.getOl() );
        actionVO.setCreateDt( eo.getCreateDt() );
        actionVO.setLastModifiedDt( eo.getLastModifiedDt() );
        actionVO.setName( eo.getName() );
        actionVO.setDescription( eo.getDescription() );
        actionVO.setLocationGroupName( eo.getLocationGroupName() );
        actionVO.setEnabled( eo.isEnabled() );

        return actionVO;
    }

    @Override
    public List<ActionVO> convertEO(List<Action> eos) {
        if ( eos == null ) {
            return null;
        }

        List<ActionVO> list = new ArrayList<ActionVO>( eos.size() );
        for ( Action action : eos ) {
            list.add( convertEO( action ) );
        }

        return list;
    }

    @Override
    public Action copy(ActionVO vo, Action target) {
        if ( vo == null ) {
            return target;
        }

        target.setPersistentKey( vo.getKey() );
        target.setProgramKey( vo.getProgram() );
        target.setName( vo.getName() );
        target.setLocationKey( vo.getLocation() );
        target.setLocationGroupName( vo.getLocationGroupName() );
        target.setActionType( vo.getType() );
        target.setDescription( vo.getDescription() );
        target.setEnabled( vo.isEnabled() );

        target.setRoute( super.srv.findByRouteId(vo.getRoute()).orElseThrow() );

        return target;
    }

    private String eoRouteRouteId(Action action) {
        RouteImpl route = action.getRoute();
        if ( route == null ) {
            return null;
        }
        return route.getRouteId();
    }
}