AttributeTO attributeTO = new AttributeTO();
attributeTO.setSchema("attr1");
attributeTO.addValue("value1");
RoleTO newRoleTO = new RoleTO();
newRoleTO.addAttribute(attributeTO);
Throwable t = null;
try {
restTemplate.postForObject(BASE_URL + "role/create", newRoleTO, RoleTO.class);
fail();