* @param id
* the ID of the network system.
* @return the list of FC endpoints.
*/
public List<FCEndpointRestRep> getFCEndpoints(URI id) {
FCEndpoints response = client.get(FCEndpoints.class, getIdUrl() + "/fc-endpoints", id);
return defaultList(response.getConnections());
}