Search in sources :

Example 1 with IBar

use of org.ovirt.engine.api.restapi.test.mappers.api.IBar in project ovirt-engine by oVirt.

the class MappingLocatorTest method testStaticBarToFooInterfaceMapper.

@Test
public void testStaticBarToFooInterfaceMapper() {
    Mapper<IBar, IFoo> mapper = mappingLocator.getMapper(IBar.class, IFoo.class);
    assertNotNull(mapper);
    IFoo foo = mapper.map(new BarImpl("bar"), null);
    assertEquals("bar", foo.get());
}
Also used : IBar(org.ovirt.engine.api.restapi.test.mappers.api.IBar) BarImpl(org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl) IFoo(org.ovirt.engine.api.restapi.test.mappers.api.IFoo) Test(org.junit.Test)

Example 2 with IBar

use of org.ovirt.engine.api.restapi.test.mappers.api.IBar in project ovirt-engine by oVirt.

the class StaticMapper method mapFooToBarInterfaces.

@Mapping(from = IFoo.class, to = IBar.class)
public static IBar mapFooToBarInterfaces(IFoo foo, IBar template) {
    IBar bar = template != null ? template : new BarImpl();
    bar.set(foo.get());
    return bar;
}
Also used : IBar(org.ovirt.engine.api.restapi.test.mappers.api.IBar) BarImpl(org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl) Mapping(org.ovirt.engine.api.restapi.types.Mapping)

Example 3 with IBar

use of org.ovirt.engine.api.restapi.test.mappers.api.IBar in project ovirt-engine by oVirt.

the class MappingLocatorTest method testStaticFooToBarInterfaceMapper.

@Test
public void testStaticFooToBarInterfaceMapper() {
    Mapper<IFoo, IBar> mapper = mappingLocator.getMapper(IFoo.class, IBar.class);
    assertNotNull(mapper);
    IBar bar = mapper.map(new FooImpl("foo"), null);
    assertEquals("foo", bar.get());
}
Also used : IBar(org.ovirt.engine.api.restapi.test.mappers.api.IBar) FooImpl(org.ovirt.engine.api.restapi.test.mappers.impl.FooImpl) IFoo(org.ovirt.engine.api.restapi.test.mappers.api.IFoo) Test(org.junit.Test)

Example 4 with IBar

use of org.ovirt.engine.api.restapi.test.mappers.api.IBar in project ovirt-engine by oVirt.

the class MappingLocatorTest method testStaticFooToBarClassMapper.

@Test
public void testStaticFooToBarClassMapper() {
    Mapper<FooImpl, BarImpl> mapper = mappingLocator.getMapper(FooImpl.class, BarImpl.class);
    assertNotNull(mapper);
    IBar bar = mapper.map(new FooImpl("foo"), null);
    assertEquals("foo", bar.get());
}
Also used : IBar(org.ovirt.engine.api.restapi.test.mappers.api.IBar) BarImpl(org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl) FooImpl(org.ovirt.engine.api.restapi.test.mappers.impl.FooImpl) Test(org.junit.Test)

Aggregations

IBar (org.ovirt.engine.api.restapi.test.mappers.api.IBar)4 Test (org.junit.Test)3 BarImpl (org.ovirt.engine.api.restapi.test.mappers.impl.BarImpl)3 IFoo (org.ovirt.engine.api.restapi.test.mappers.api.IFoo)2 FooImpl (org.ovirt.engine.api.restapi.test.mappers.impl.FooImpl)2 Mapping (org.ovirt.engine.api.restapi.types.Mapping)1