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

com.blossomproject.generator.configuration.BlobFieldBuilder Maven / Gradle / Ivy

package com.blossomproject.generator.configuration;

import com.blossomproject.generator.configuration.model.Field;
import com.blossomproject.generator.configuration.model.impl.BlobField;

public class BlobFieldBuilder extends FieldBuilder {

  BlobFieldBuilder(FieldsBuilder parent, String name) {
    super(parent, name, Byte[].class, "longblob");
  }

  @Override
  Field build() {
    return new BlobField(name, columnName, className, jdbcType, required, updatable, nullable,
      defaultValue, searchable);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy