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

br.com.objectos.bvmf.bdr.BdrLinkBuilderPojo Maven / Gradle / Ivy

The newest version!
package br.com.objectos.bvmf.bdr;

import javax.annotation.Generated;

@Generated("br.com.objectos.auto.pojo.AutoPojoProcessor")
final class BdrLinkBuilderPojo implements BdrLinkBuilder, BdrLinkBuilder.BdrLinkBuilderHref, BdrLinkBuilder.BdrLinkBuilderCategoria {
  private String href;

  private BdrCategoria categoria;

  public BdrLinkBuilderPojo() {
  }

  @Override
  public BdrLink build() {
    return new BdrLinkPojo(this);
  }

  @Override
  public BdrLinkBuilder.BdrLinkBuilderHref href(String href) {
    if (href == null) {
      throw new NullPointerException();
    }
    this.href = href;
    return this;
  }

  @Override
  public BdrLinkBuilder.BdrLinkBuilderCategoria categoria(BdrCategoria categoria) {
    if (categoria == null) {
      throw new NullPointerException();
    }
    this.categoria = categoria;
    return this;
  }

  String ___get___href() {
    return href;
  }

  BdrCategoria ___get___categoria() {
    return categoria;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy