Uses of Class
domain.Machine

Packages that use Machine
  • Uses of Machine in application

    Constructors in application with parameters of type Machine
    Modifier
    Constructor
    Description
     
    InterfaceMachineInfo(javafx.stage.Stage s, Machine m, Context c)
    Constructs the machine information interface. | Construit l'interface d'information d'une machine.
  • Uses of Machine in application.components

    Constructors in application.components with parameters of type Machine
    Modifier
    Constructor
    Description
     
    PDF(String name, Machine m)
     
  • Uses of Machine in application.components.machine

    Constructors in application.components.machine with parameters of type Machine
    Modifier
    Constructor
    Description
     
    MachineButton(javafx.stage.Stage s, Context c, Machine m)
     
  • Uses of Machine in application.sections.admin

    Classes in application.sections.admin with type parameters of type Machine
    Modifier and Type
    Class
    Description
    class 
    Displays a machine dashboard of the type passed as a parameter | Affiche un dashboard de machine du type passé en paramètre.
  • Uses of Machine in Dao

    Methods in Dao that return Machine
    Modifier and Type
    Method
    Description
    static Machine
    MachineDao.getMachine(int id)
    Create a machine in the database | Crée une machine dans la db.
    Methods in Dao that return types with arguments of type Machine
    Modifier and Type
    Method
    Description
    MachineDao.getAllMachines()
    Get all machine from db | récupère toutes les machines depuis la base de données
    Methods in Dao with parameters of type Machine
    Modifier and Type
    Method
    Description
    static boolean
    MachineDao.CreateMachineInDb(Machine m)
    Create a machine in the database | Crée une machine dans la db.
    static boolean
    MachineDao.deleteMachine(Machine m)
    Delete machine in database | Supprime une machine en db
    static String
    MachineDao.updateMachineDb(Machine m)
    Update machine in database | met à jour une machine en db
  • Uses of Machine in domain

    Subclasses of Machine in domain
    Modifier and Type
    Class
    Description
    class 
    Represents a compute machine this class specializes a Machine for computing purposes | Représente une machine de type calcul (compute) cette classe spécialise une Machine pour des usages de calcul.
    class 
    Represents a firewall network machine | Représente une machine réseau de type pare-feu.
    class 
    Represents a GPU-enabled compute machine | Représente une machine de calcul spécialisé sur les GPU.
    class 
    Represents a network machine (Switch, Router, Firewall, etc.) | Représente une machine réseau (Switch, Router, Firewall, etc.).
    class 
    Represents a Router in the network | Représente un routeur dans le réseau.
    class 
    Represents a storage machine in the system | Représente une machine de stockage dans le système.
    class 
    Represents a network switch in the system | Représente un switch réseau dans le système.
    Methods in domain that return Machine
    Modifier and Type
    Method
    Description
    static Machine
    Machine.getMachine(int id)
    Retrieves a machine by its ID | Récupère une machine à partir de son identifiant.
    Ticket.getMachine()
     
    Methods in domain that return types with arguments of type Machine
    Modifier and Type
    Method
    Description
    Context.getMachines()
    Returns the machine list | Retourne la liste des machines.
    Constructors in domain with parameters of type Machine
    Modifier
    Constructor
    Description
     
    Ticket(int id, Machine m, Admin creator, Technician technician, String title, String description, String status, LocalDateTime open_at, LocalDateTime closed_at)
    Creates a Ticket instance with explicit values | Crée une instance Ticket à partir de valeurs explicites.