| Contact | Donate | Imprint |
| LaunchSite | FacilityModule | SpaceX |
| Property | Type | Entity | Reference | Module |
| (1) Code | STRING | LaunchSite | ||
| (2) Description | STRING | LaunchSite | ||
| (3) Facility | INT | LaunchSite | Facility | FacilityModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /launchsite/facility/{id} | findAllLaunchSiteOfFacility(id) | FacilityModule | GET | Facility LaunchSite |
| (2) /launchsite/{id} | deleteLaunchSiteById(id) | FacilityModule | DELETE | LaunchSite |
| (3) /launchsite | insertLaunchSite(launchsite) | FacilityModule | POST | LaunchSite |
| (4) /launchsite/{id} | updateLaunchSiteById(launchsite) | FacilityModule | PUT | LaunchSite |
| (5) /launchsite | findAllLaunchSite() | FacilityModule | GET | LaunchSite |
| (6) /launchsite/{id} | findLaunchSiteById(id) | FacilityModule | GET | LaunchSite |
| (7) /mission/launchsite/{id} | findAllMissionOfLaunchSite(id) | MissionModule | GET | LaunchSite Mission |
Example:
final LaunchSite launchsite = (LaunchSite) invokeModule(FACILITY_MODULE + "/launchsite/" + id, LaunchSite.class);| Contact | Donate | Imprint |