Schnittstelle OrbitController

Alle bekannten Implementierungsklassen:
OrbitControllerDecorator, OrbitControllerImpl

public interface OrbitController
No description (Generated with springmvc-raml-parser v.2.0.5)
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    org.springframework.http.ResponseEntity<?>
    countOrbits(String spacecraftCode, Long orbitNumberFrom, Long orbitNumberTo, String starttimefrom, String starttimeto)
    Retrieves the number of orbits matching the specified search criteria.
    org.springframework.http.ResponseEntity<List<RestOrbit>>
    createOrbits(@Valid List<RestOrbit> restOrbit)
    Creates one or more orbits based on the provided JSON objects.
    org.springframework.http.ResponseEntity<?>
    Deletes the orbit with the given ID.
    org.springframework.http.ResponseEntity<RestOrbit>
    Retrieves the orbit with the given ID.
    org.springframework.http.ResponseEntity<List<RestOrbit>>
    getOrbits(String spacecraftCode, Long orbitNumberFrom, Long orbitNumberTo, String startTimeFrom, String startTimeTo, Integer recordFrom, Integer recordTo, String[] orderBy)
    Retrieves a list of all orbits filtered by spacecraft code, orbit number range, and start time range.
    org.springframework.http.ResponseEntity<RestOrbit>
    modifyOrbit(Long id, RestOrbit restOrbit)
    Updates the orbit with the given ID using the attribute values from the provided JSON object.
  • Methodendetails

    • getOrbits

      org.springframework.http.ResponseEntity<List<RestOrbit>> getOrbits(String spacecraftCode, Long orbitNumberFrom, Long orbitNumberTo, String startTimeFrom, String startTimeTo, Integer recordFrom, Integer recordTo, String[] orderBy)
      Retrieves a list of all orbits filtered by spacecraft code, orbit number range, and start time range.
    • createOrbits

      org.springframework.http.ResponseEntity<List<RestOrbit>> createOrbits(@Valid @Valid List<RestOrbit> restOrbit)
      Creates one or more orbits based on the provided JSON objects.
    • countOrbits

      org.springframework.http.ResponseEntity<?> countOrbits(String spacecraftCode, Long orbitNumberFrom, Long orbitNumberTo, String starttimefrom, String starttimeto)
      Retrieves the number of orbits matching the specified search criteria.
    • getOrbitById

      org.springframework.http.ResponseEntity<RestOrbit> getOrbitById(Long id)
      Retrieves the orbit with the given ID.
    • deleteOrbitById

      org.springframework.http.ResponseEntity<?> deleteOrbitById(Long id)
      Deletes the orbit with the given ID.
    • modifyOrbit

      org.springframework.http.ResponseEntity<RestOrbit> modifyOrbit(Long id, RestOrbit restOrbit)
      Updates the orbit with the given ID using the attribute values from the provided JSON object.