public void createUserWithDbPropagation() {
UserTO userTO = new UserTO();
userTO.setPassword("password");
userTO.setUsername("yyy@yyy.yyy");
AttributeTO attributeTO = new AttributeTO();
attributeTO.setSchema("firstname");
attributeTO.addValue("yyy");
userTO.addAttribute(attributeTO);
attributeTO = new AttributeTO();
attributeTO.setSchema("surname");
attributeTO.addValue("yyy");
userTO.addAttribute(attributeTO);
attributeTO = new AttributeTO();
attributeTO.setSchema("userId");
attributeTO.addValue("yyy@yyy.yyy");
userTO.addAttribute(attributeTO);
attributeTO = new AttributeTO();
attributeTO.setSchema("fullname");
attributeTO.addValue("yyy");
userTO.addAttribute(attributeTO);
userTO.addResource("resource-testdb");
userTO = restTemplate.postForObject(BASE_URL + "user/create", userTO, UserTO.class);