public List<ConnConfProperty> getConfigurationProperties(@PathVariable("connectorId") final Long connectorId)
throws NotFoundException {
final ConnInstance connInstance = connInstanceDAO.find(connectorId);
if (connInstance == null) {
throw new NotFoundException("Connector '" + connectorId + "'");
}
List<ConnConfProperty> result = new ArrayList<ConnConfProperty>(connInstance.getConfiguration());
auditManager.audit(Category.connector, ConnectorSubCategory.getConfigurationProperties, Result.success,