java.lang.Object
edu.university.ecs.lab.detection.antipatterns.models.AbstractAntiPattern
edu.university.ecs.lab.detection.antipatterns.models.WrongCuts
All Implemented Interfaces:
JsonSerializable

public class WrongCuts extends AbstractAntiPattern
Represents a cluster of wrongly interconnected services (Wrong Cuts) detected in a microservice network graph.
  • Field Details

    • NAME

      private static final String NAME
      Anti-pattern name
      See Also:
    • DESCRIPTION

      private static final String DESCRIPTION
      Anti-pattern description
      See Also:
    • wrongCuts

      private List<String> wrongCuts
      Set of service names forming a cluster of wrongly interconnected services.
  • Constructor Details

    • WrongCuts

      public WrongCuts(List<String> wrongCuts)
      Constructs a WrongCuts object initialized with the provided set of wrongly interconnected service names.
      Parameters:
      wrongCuts - Set of service names forming a cluster of wrongly interconnected services.
  • Method Details