Class DeleteStatementGeneratorImpl.PathElement

java.lang.Object
org.broadleafcommerce.core.util.service.DeleteStatementGeneratorImpl.PathElement
Enclosing class:
DeleteStatementGeneratorImpl

public static class DeleteStatementGeneratorImpl.PathElement extends Object
  • Constructor Details

    • PathElement

      public PathElement(String name, String idField, String joinColumn, boolean fromManyToOne)
      Parameters:
      name - table name
      idField - id field name
      joinColumn - fk column name in this table to join with "parent table", like blc_order->order_item, fk is ORDER_ID
      fromManyToOne - is this path came from @ManyToOne - ManyToMany case without 3rd table (or exceptional case @OneToOne biderectional with one site @ManyToOne)
    • PathElement

      public PathElement(String name, String idField, String joinColumn)
  • Method Details

    • getName

      public String getName()
    • getIdField

      public String getIdField()
    • getJoinColumn

      public String getJoinColumn()
    • isFromManyToOne

      public boolean isFromManyToOne()