return enterprise;
}
public static EnterprisePropertiesDto enterprisePropertiesPut() {
EnterprisePropertiesDto enterpriseProp = new EnterprisePropertiesDto();
enterpriseProp.setId(1);
Map<String, String> props = Maps.newHashMap();
props.put("key", "value");
enterpriseProp.setProperties(props);
enterpriseProp.addLink(new RESTLink("edit", "http://localhost/api/admin/enterprises/1/properties"));
enterpriseProp.addLink(new RESTLink("enterprise", "http://localhost/api/admin/enterprises/1"));
return enterpriseProp;
}