David Zaltsman

Results 2 issues of David Zaltsman

Hello, I have a few containers running and I don't want to rerun the containers during test suits to speed up my tests. There is a way to reuse the...

I have created api model object with relationship: ``` FirstApiModel f = new FirstApiModel(); f.setId("1"); f.setName("test"); RelationShipApiModel r = new RelationShipApiModel(); r.setName("bla"); f.setRelationship(r); ResourceConverter resourceConverter = new ResourceConverter(FirstApiModel.class, RelationShipApiModel.class); resourceConverter.enableSerializationOption(SerializationFeature.INCLUDE_RELATIONSHIP_ATTRIBUTES);...