func (this *ReplicationControllerController) Delete(request *restful.Request, response *restful.Response) {
	fmt.Println("[Delete] Delete ReplicationController")
	rc_name := request.PathParameter("name")

	var list_service k8sService.ReplicationControllerService
	response.WriteEntity(list_service.DeleteReplicationController(rc_name))

	return
}