All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.objectos.sql.info.ForeignKeyInfoPojo Maven / Gradle / Ivy

The newest version!
package br.com.objectos.sql.info;

import br.com.objectos.sql.core.meta.ForeignKeyAction;
import java.util.List;
import javax.annotation.Generated;

@Generated("br.com.objectos.auto.pojo.AutoPojoProcessor")
final class ForeignKeyInfoPojo extends ForeignKeyInfo {
  private final String name;

  private final List keyPartList;

  private final ForeignKeyAction deleteAction;

  private final ForeignKeyAction updateAction;

  public ForeignKeyInfoPojo(ForeignKeyInfoBuilderPojo builder) {
    super();
    name = builder.___get___name();
    keyPartList = builder.___get___keyPartList();
    deleteAction = builder.___get___deleteAction();
    updateAction = builder.___get___updateAction();
  }

  @Override
  String name() {
    return name;
  }

  @Override
  List keyPartList() {
    return keyPartList;
  }

  @Override
  ForeignKeyAction deleteAction() {
    return deleteAction;
  }

  @Override
  ForeignKeyAction updateAction() {
    return updateAction;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy