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

com.anaptecs.jeaf.junit.openapi.base.MultivaluedQueryParamsBean Maven / Gradle / Ivy

There is a newer version: 1.24.1
Show newest version
/*
 * anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
 *
 * Copyright 2004 - 2021. All rights reserved.
 */
package com.anaptecs.jeaf.junit.openapi.base;

import java.util.Arrays;

import javax.validation.ConstraintViolationException;
import javax.validation.Valid;
import javax.ws.rs.QueryParam;

import com.anaptecs.jeaf.core.api.ServiceObject;
import com.anaptecs.jeaf.tools.api.validation.ValidationTools;
import com.anaptecs.jeaf.xfun.api.checks.Check;

@Valid
public class MultivaluedQueryParamsBean implements ServiceObject {
  /**
   * Default serial version uid.
   */
  private static final long serialVersionUID = 1L;

  /**
   * 

* Breaking Change with 47.11: At least one will become mandatory */ @QueryParam("intArray") private int[] intArray; @QueryParam("strings") private String[] strings; @QueryParam("integers") private Integer[] integers; /** * Default constructor is only intended to be used for deserialization by tools like Jackson for JSON. For "normal" * object creation builder should be used instead. */ protected MultivaluedQueryParamsBean( ) { } /** * Initialize object using the passed builder. * * @param pBuilder Builder that should be used to initialize this object. The parameter must not be null. */ protected MultivaluedQueryParamsBean( Builder pBuilder ) { // Ensure that builder is not null. Check.checkInvalidParameterNull(pBuilder, "pBuilder"); // Read attribute values from builder. intArray = pBuilder.intArray; strings = pBuilder.strings; integers = pBuilder.integers; } /** * Method returns a new builder. * * @return {@link Builder} New builder that can be used to create new MultivaluedQueryParamsBean objects. */ public static Builder builder( ) { return new Builder(); } /** * Convenience method to create new instance of class MultivaluedQueryParamsBean. * * * @return {@link com.anaptecs.jeaf.junit.openapi.base.MultivaluedQueryParamsBean} */ public static MultivaluedQueryParamsBean of( ) { MultivaluedQueryParamsBean.Builder lBuilder = MultivaluedQueryParamsBean.builder(); return lBuilder.build(); } /** * Class implements builder to create a new instance of class MultivaluedQueryParamsBean. */ public static class Builder { /** *

* Breaking Change with 47.11: At least one will become mandatory */ private int[] intArray; private String[] strings; private Integer[] integers; /** * Use {@link MultivaluedQueryParamsBean#builder()} instead of private constructor to create new builder. */ protected Builder( ) { } /** * Use {@link MultivaluedQueryParamsBean#builder(MultivaluedQueryParamsBean)} instead of private constructor to * create new builder. */ protected Builder( MultivaluedQueryParamsBean pObject ) { if (pObject != null) { // Read attribute values from passed object. this.setIntArray(pObject.intArray); this.setStrings(pObject.strings); this.setIntegers(pObject.integers); } } /** * Method sets attribute {@link #intArray}.
*

* Breaking Change with 47.11: At least one will become mandatory * * @param pIntArray Value to which {@link #intArray} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setIntArray( int[] pIntArray ) { // Assign value to attribute if (pIntArray != null) { intArray = pIntArray; } else { intArray = null; } return this; } /** * Method sets attribute {@link #strings}.
* * @param pStrings Collection to which {@link #strings} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setStrings( String[] pStrings ) { // Assign value to attribute if (pStrings != null) { strings = pStrings; } else { strings = null; } return this; } /** * Method sets attribute {@link #integers}.
* * @param pIntegers Collection to which {@link #integers} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setIntegers( Integer[] pIntegers ) { // Assign value to attribute if (pIntegers != null) { integers = pIntegers; } else { integers = null; } return this; } /** * Method creates a new instance of class MultivaluedQueryParamsBean. The object will be initialized with the values * of the builder. * * @return MultivaluedQueryParamsBean Created object. The method never returns null. */ public MultivaluedQueryParamsBean build( ) { return new MultivaluedQueryParamsBean(this); } /** * Method creates a new validated instance of class MultivaluedQueryParamsBean. The object will be initialized with * the values of the builder and validated afterwards. * * @return MultivaluedQueryParamsBean Created and validated object. The method never returns null. * @throws ConstraintViolationException in case that one or more validations for the created object failed. */ public MultivaluedQueryParamsBean buildValidated( ) throws ConstraintViolationException { MultivaluedQueryParamsBean lObject = this.build(); ValidationTools.getValidationTools().enforceObjectValidation(lObject); return lObject; } } /** * Method returns attribute {@link #intArray}.
*

* Breaking Change with 47.11: At least one will become mandatory * * @return int[] Value to which {@link #intArray} is set. */ public int[] getIntArray( ) { int[] lReturnValue; if (intArray != null) { lReturnValue = intArray; } else { lReturnValue = null; } return lReturnValue; } /** * Method sets attribute {@link #intArray}.
*

* Breaking Change with 47.11: At least one will become mandatory * * @param pIntArray Value to which {@link #intArray} should be set. */ public void setIntArray( int[] pIntArray ) { // Assign value to attribute if (pIntArray != null) { intArray = pIntArray; } else { intArray = null; } } /** * Method returns attribute {@link #strings}.
* * @return {@link String[]} Value to which {@link #strings} is set. */ public String[] getStrings( ) { String[] lReturnValue; if (strings != null) { lReturnValue = strings; } else { lReturnValue = null; } return lReturnValue; } /** * Method sets attribute {@link #strings}.
* * @param pStrings Value to which {@link #strings} should be set. */ public void setStrings( String[] pStrings ) { // Assign value to attribute if (pStrings != null) { strings = pStrings; } else { strings = null; } } /** * Method returns attribute {@link #integers}.
* * @return {@link Integer[]} Value to which {@link #integers} is set. */ public Integer[] getIntegers( ) { Integer[] lReturnValue; if (integers != null) { lReturnValue = integers; } else { lReturnValue = null; } return lReturnValue; } /** * Method sets attribute {@link #integers}.
* * @param pIntegers Value to which {@link #integers} should be set. */ public void setIntegers( Integer[] pIntegers ) { // Assign value to attribute if (pIntegers != null) { integers = pIntegers; } else { integers = null; } } /** * Method returns a StringBuilder that can be used to create a String representation of this object. The returned * StringBuilder also takes care about attributes of super classes. * * @return {@link StringBuilder} StringBuilder representing this object. The method never returns null. */ public StringBuilder toStringBuilder( String pIndent ) { StringBuilder lBuilder = new StringBuilder(); lBuilder.append(pIndent); lBuilder.append(this.getClass().getName()); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("intArray: "); if (intArray != null) { lBuilder.append(Arrays.toString(intArray)); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("strings: "); if (strings != null) { lBuilder.append(Arrays.toString(strings)); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("integers: "); if (integers != null) { lBuilder.append(Arrays.toString(integers)); } else { lBuilder.append(" null"); } lBuilder.append(System.lineSeparator()); return lBuilder; } /** * Method creates a new String with the values of all attributes of this class. All references to other objects will * be ignored. * * @return {@link String} String representation of this object. The method never returns null. */ @Override public String toString( ) { return this.toStringBuilder("").toString(); } /** * Method creates a new builder and initializes it with the data of this object. * * @return {@link Builder} New builder that can be used to create new MultivaluedQueryParamsBean objects. The method * never returns null. */ public Builder toBuilder( ) { return new Builder(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy