Skip to content

vinayverghese/binarydemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Aircraft Queue Management System

Problem Statement -> View

Postman Collection -> View

Database Script-> View

Server Details

In order to define hostname and port, following properties are required (Port can be changed)

server.servlet.contextPath=/binary
server.port=9091

Database Details

spring.datasource.url=jdbc:mysql://localhost:8889/binary
spring.datasource.username=root
spring.datasource.password=root
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect

API Endpoints

  • Add to Queue:

    To add an AC to queue, call request with following parameters in the body based on:

    enqueueType = E (Emergency), V (VIP), P (Passenger), C (Cargo)

    enqueueSize = L (Large), S (Small)

    position = Position in Queue

    Request PUT http://localhost:9091/binary/updatequeue

    Body

    {
        "enqueueType": "E",
        "enqueueSize": "S",
        "position" : 9
    }
    
  • Remove from Queue:

    To view ACs in Queue, call below request without any parameter

    Request PUT http://localhost:9091/binary/dequeue

    To dequeue ACs based on precedence, call request with number of ACs (number=1,2,..) to be dequeued as path parameter

    Request PUT http://localhost:9091/binary/dequeue/{number}

  • State of Queue:

    To view state of queue, call request based on following query parameters:

    aircraftId (Id of AC in Queue)

    queueType = E (Emergency), V (VIP), P (Passenger), C (Cargo)

    queueSize = L (Large), S (Small)

    Request GET http://localhost:9091/binary/list?queueType=V&queueSize=S&aircraftId=1

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages