Package ma.glasnost.orika

Examples of ma.glasnost.orika.MapperFactory


              Double.MAX_VALUE,
              Character.MAX_VALUE,
              true,
              Byte.MAX_VALUE);
     
      MapperFactory factory = MappingUtil.getMapperFactory();
     
      PrimitiveHolderDTO dto = factory.getMapperFacade().map(primitiveHolder, PrimitiveHolderDTO.class);
     
      assertValidMapping(primitiveHolder,dto);
     
      PrimitiveHolder mapBack = factory.getMapperFacade().map(dto, PrimitiveHolder.class);
     
      assertValidMapping(mapBack, dto);
    }
View Full Code Here


              Double.MAX_VALUE,
              Character.MAX_VALUE,
              true,
              Byte.MAX_VALUE);
     
      MapperFactory factory = MappingUtil.getMapperFactory();
     
      PrimitiveWrapperHolder wrapper = factory.getMapperFacade().map(primitiveHolder, PrimitiveWrapperHolder.class);
     
      assertValidMapping(wrapper, primitiveHolder);
     
      PrimitiveHolder mapBack = factory.getMapperFacade().map(wrapper, PrimitiveHolder.class);
     
      assertValidMapping(wrapper, mapBack);
    }
View Full Code Here

        assertArrayEquals(new int[] { 6 }, a.getInts());
    }

    @Test
    public void testIntegerArrayToListOfInteger() {
        MapperFactory mapperFactory = new DefaultMapperFactory.Builder().build();

        MapperFacade mapperFacade = mapperFactory.getMapperFacade();

        A a = new A();
        a.setIntegers(new Integer[] { 4 });

        B b = mapperFacade.map(a, B.class);
View Full Code Here

        Assert.assertEquals(ExtendedNameToStringConverter.class, converter.getClass());
    }
   
    @Test
    public void testResolveMultipleConvertersOutOfOrder() {
        MapperFactory factory = MappingUtil.getMapperFactory();
       
        factory.getConverterFactory().registerConverter(new NameToStringConverter());
        factory.getConverterFactory().registerConverter(new ExtendedNameToStringConverter());
       
        Converter<?,?> converter = factory.getConverterFactory().getConverter(TypeFactory.valueOf(ExtendedName.class), TypeFactory.valueOf(String.class));
       
        Assert.assertEquals(ExtendedNameToStringConverter.class, converter.getClass());
    }
View Full Code Here

              Double.MAX_VALUE,
              Character.MAX_VALUE,
              true,
              Byte.MAX_VALUE);
     
      MapperFactory factory = MappingUtil.getMapperFactory();
     
      PrimitiveWrapperHolderDTO dto = factory.getMapperFacade().map(primitiveHolder, PrimitiveWrapperHolderDTO.class);
     
      assertValidMapping(primitiveHolder, dto);
     
      PrimitiveWrapperHolder mapBack = factory.getMapperFacade().map(dto, PrimitiveWrapperHolder.class);
     
      assertValidMapping(mapBack, dto);
    }
View Full Code Here

        assertEquals(Integer.valueOf(4), b.getIntegers().get(0));
    }

    @Test
    public void testListOfIntegerToIntegerArray() {
        MapperFactory mapperFactory = new DefaultMapperFactory.Builder().build();

        MapperFacade mapperFacade = mapperFactory.getMapperFacade();

        B b = new B();
        b.setIntegers(asList(Integer.valueOf(7)));

        A a = mapperFacade.map(b, A.class);
View Full Code Here

   
    @Test
    public void testPrimitivePropertiesWithWrapperConstructor() throws Throwable {
     
      final SimpleDateFormat df = new SimpleDateFormat(DATE_PATTERN);
        MapperFactory factory = MappingUtil.getMapperFactory();
       
        factory.registerDefaultFieldMapper(new DefaultFieldMapper() {

          public String suggestMappedField(String fromProperty,
          Type<?> fromPropertyType) {
          if ("dateOfBirth".equals(fromProperty)) {
            return "date";
          } else if("date".equals(fromProperty)) {
            return "dateOfBirth";
          }
          return null;
        }
          });

        factory.getConverterFactory().registerConverter(new DateToStringConverter(DATE_PATTERN));
       
        Person person = new Person();
        person.setFirstName("Abdelkrim");
        person.setLastName("EL KHETTABI");
        person.setDate(df.parse("01/01/1980"));
        person.setAge(31L);
       
        PersonVO2 vo = factory.getMapperFacade().map(person, PersonVO2.class);
       
        Assert.assertEquals(person.getFirstName(), vo.getFirstName());
        Assert.assertEquals(person.getLastName(), vo.getLastName());
        Assert.assertTrue(person.getAge() == vo.getAge());
        Assert.assertEquals("01/01/1980", vo.getDateOfBirth());
View Full Code Here

public abstract class AbstractMapperTest {
    protected MapperFactory createMapperFactory() {
        // MapperFactory mapperFactory = new
        // DefaultMapperFactory.Builder().compilerStrategy(new
        // EclipseJdtCompilerStrategy()).build();
        MapperFactory mapperFactory = new DefaultMapperFactory.Builder().build();
        return mapperFactory;
    }
View Full Code Here

      books.add(new BookImpl("Book #3", author2));
      books.add(new BookImpl("Book #4", author2));
     
      Library library = new LibraryImpl("Library #1", books);
     
      MapperFactory factory = MappingUtil.getMapperFactory();
      MapperFacade mapper = factory.getMapperFacade();
     
      LibraryDTO mapped = mapper.map(library, LibraryDTO.class);
     
      assertValidMapping(library,mapped);
     
View Full Code Here

      books.add(new BookNested("Book #3", author2));
      books.add(new BookNested("Book #4", author2));
     
      LibraryNested library = new LibraryNested("Library #1", books);
     
      MapperFactory factory = MappingUtil.getMapperFactory();
      factory.registerClassMap(
          factory.classMap(AuthorNested.class, AuthorDTO.class)
            .field("name.fullName", "name").byDefault().toClassMap());
   
      MapperFacade mapper = factory.getMapperFacade();
     
      LibraryDTO mapped = mapper.map(library, LibraryDTO.class);
     
      assertValidMapping(library,mapped);
     
View Full Code Here

TOP

Related Classes of ma.glasnost.orika.MapperFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.