Class Facade

java.lang.Object
Structural.Facade.Facade

public class Facade extends Object
The Facade provides a simplified interface to the subsystems. The Facade delegates requests from the client to the appropriate subsystems, hiding their complexity.
  • Constructor Details

    • Facade

      public Facade()
      Constructs the Facade with subsystem instances.
  • Method Details

    • operation

      public String operation()
      Executes a high-level operation by coordinating subsystems.
      Returns:
      A string describing the combined operations.