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

br.com.objectos.schema.info.ForeignKeyInfoBuilder Maven / Gradle / Ivy

package br.com.objectos.schema.info;

import br.com.objectos.schema.annotation.ForeignKeyAction;
import java.util.List;
import javax.annotation.Generated;

@Generated({
    "br.com.objectos.pojo.compiler.PojoCompiler",
    "br.com.objectos.pojo.plugin.ListPlugin",
    "br.com.objectos.pojo.plugin.StandardBuilderPropertyAction"
})
public interface ForeignKeyInfoBuilder {
  ForeignKeyInfoBuilderName name(String name);

  interface ForeignKeyInfoBuilderName {
    ForeignKeyInfoBuilderKeyPartList keyPartList(List keyPartList);

    ForeignKeyInfoBuilderKeyPartList keyPartList(ForeignKeyPart... elements);
  }

  interface ForeignKeyInfoBuilderKeyPartList {
    ForeignKeyInfoBuilderDeleteAction deleteAction(ForeignKeyAction deleteAction);
  }

  interface ForeignKeyInfoBuilderDeleteAction {
    ForeignKeyInfoBuilderUpdateAction updateAction(ForeignKeyAction updateAction);
  }

  interface ForeignKeyInfoBuilderUpdateAction {
    ForeignKeyInfo build();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy