AccountMapperImpl.java

  1. package org.openwms.common.account;

  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import javax.annotation.processing.Generated;
  5. import org.openwms.common.account.api.AccountVO;
  6. import org.springframework.stereotype.Component;

  7. @Generated(
  8.     value = "org.mapstruct.ap.MappingProcessor"
  9. )
  10. @Component
  11. public class AccountMapperImpl extends AccountMapper {

  12.     @Override
  13.     public AccountVO convertToVO(Account eo) {
  14.         if ( eo == null ) {
  15.             return null;
  16.         }

  17.         AccountVO accountVO = new AccountVO();

  18.         if ( eo.hasPersistentKey() ) {
  19.             accountVO.setpKey( eo.getPersistentKey() );
  20.         }
  21.         accountVO.setIdentifier( eo.getIdentifier() );
  22.         accountVO.setName( eo.getName() );

  23.         return accountVO;
  24.     }

  25.     @Override
  26.     public List<AccountVO> convertToVO(List<Account> eo) {
  27.         if ( eo == null ) {
  28.             return null;
  29.         }

  30.         List<AccountVO> list = new ArrayList<AccountVO>( eo.size() );
  31.         for ( Account account : eo ) {
  32.             list.add( convertToVO( account ) );
  33.         }

  34.         return list;
  35.     }
  36. }