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

br.com.objectos.way.ui.UserInputPojo Maven / Gradle / Ivy

package br.com.objectos.way.ui;

import br.com.objectos.way.ui.form.FormResponse.Error;
import com.google.common.base.Optional;
import java.util.List;

@javax.annotation.Generated("br.com.objectos.way.auto.pojo.AutoPojoProcessor")
final class UserInputPojo extends UserInput  {

  private final Optional context;
  private final List errors;
  private final List formErrors;
  private final Optional redirectUrl;

  public UserInputPojo(UserInputBuilderPojo builder) {
    super();
    context = builder.context();
    errors = builder.errors();
    formErrors = builder.formErrors();
    redirectUrl = builder.redirectUrl();
  }

  @Override
  Optional context() {
    return context;
  }
  
  @Override
  List errors() {
    return errors;
  }
  
  @Override
  List formErrors() {
    return formErrors;
  }
  
  @Override
  Optional redirectUrl() {
    return redirectUrl;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy