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

com.anaptecs.jeaf.junit.openapi.composite.ComplexBookingIDBase Maven / Gradle / Ivy

/*
 * anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
 *
 * Copyright 2004 - 2021. All rights reserved.
 */
package com.anaptecs.jeaf.junit.openapi.composite;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import javax.validation.ConstraintViolationException;

import com.anaptecs.jeaf.core.api.ServiceObject;
import com.anaptecs.jeaf.junit.extension.BuilderPropertyDeclaration;
import com.anaptecs.jeaf.junit.extension.ClassPropertyDeclaration;
import com.anaptecs.jeaf.junit.openapi.base.BookingID;
import com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType;
import com.anaptecs.jeaf.tools.api.validation.ValidationTools;
import com.anaptecs.jeaf.xfun.api.checks.Check;

public abstract class ComplexBookingIDBase extends Object implements ServiceObject {
  /**
   * Default serial version uid.
   */
  private static final long serialVersionUID = 1L;

  /**
   * Constant for the name of attribute "internalID".
   */
  public static final String INTERNALID = "internalID";

  /**
   * Constant for the name of attribute "referenceID".
   */
  public static final String REFERENCEID = "referenceID";

  /**
   * Constant for the name of attribute "bookingIDs".
   */
  public static final String BOOKINGIDS = "bookingIDs";

  /**
   * Constant for the name of attribute "complexBookingType".
   */
  public static final String COMPLEXBOOKINGTYPE = "complexBookingType";

  /**
   * Constant for the name of attribute "anotherID".
   */
  public static final String ANOTHERID = "anotherID";

  // "long"
  @ClassPropertyDeclaration
  /**
   * Internal ID
* 2nd line
* 3rd line */ private long internalID; // "long" private int internalIDXYZ = 0; // "String" @ClassPropertyDeclaration private String referenceID; // "String" private int referenceIDXYZ = 0; // "com.anaptecs.jeaf.junit.openapi.base.BookingID" @ClassPropertyDeclaration private List bookingIDs; // "com.anaptecs.jeaf.junit.openapi.base.BookingID" private int bookingIDsXYZ = 0; // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" @ClassPropertyDeclaration private ComplexBookingType complexBookingType; // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" private int complexBookingTypeXYZ = 0; // "java.lang.Integer" @ClassPropertyDeclaration private Integer anotherID; // "java.lang.Integer" private int anotherIDXYZ = 0; /** * 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 ComplexBookingIDBase( ) { bookingIDs = new ArrayList(); } /** * Initialize object using the passed builder. * * @param pBuilder Builder that should be used to initialize this object. The parameter must not be null. */ protected ComplexBookingIDBase( BuilderBase pBuilder ) { // Ensure that builder is not null. Check.checkInvalidParameterNull(pBuilder, "pBuilder"); // Read attribute values from builder. internalID = pBuilder.internalID; // "long" internalIDXYZ = pBuilder.internalIDXYZ; referenceID = pBuilder.referenceID; // "String" referenceIDXYZ = pBuilder.referenceIDXYZ; if (pBuilder.bookingIDs != null) { bookingIDs = pBuilder.bookingIDs; } else { bookingIDs = new ArrayList(); } // "com.anaptecs.jeaf.junit.openapi.base.BookingID" bookingIDsXYZ = pBuilder.bookingIDsXYZ; complexBookingType = pBuilder.complexBookingType; // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" complexBookingTypeXYZ = pBuilder.complexBookingTypeXYZ; anotherID = pBuilder.anotherID; // "java.lang.Integer" anotherIDXYZ = pBuilder.anotherIDXYZ; } /** * Class implements builder to create a new instance of class ComplexBookingID. As the class has read only attributes * or associations instances can not be created directly. Instead this builder class has to be used. */ public static abstract class BuilderBase { /** * Internal ID
* 2nd line
* 3rd line */ // "long" @BuilderPropertyDeclaration private long internalID; // "long" private int internalIDXYZ = 0; // "String" @BuilderPropertyDeclaration private String referenceID; // "String" private int referenceIDXYZ = 0; // "com.anaptecs.jeaf.junit.openapi.base.BookingID" @BuilderPropertyDeclaration private List bookingIDs; // "com.anaptecs.jeaf.junit.openapi.base.BookingID" private int bookingIDsXYZ = 0; // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" @BuilderPropertyDeclaration private ComplexBookingType complexBookingType; // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" private int complexBookingTypeXYZ = 0; // "java.lang.Integer" @BuilderPropertyDeclaration private Integer anotherID; // "java.lang.Integer" private int anotherIDXYZ = 0; /** * Use {@link ComplexBookingID.builder()} instead of protected constructor to create new builder. */ protected BuilderBase( ) { } /** * Use {@link ComplexBookingID.builder(ComplexBookingID)} instead of protected constructor to create new builder. */ protected BuilderBase( ComplexBookingIDBase pObject ) { if (pObject != null) { // Read attribute values from passed object. this.setInternalID(pObject.internalID); this.setReferenceID(pObject.referenceID); this.setBookingIDs(pObject.bookingIDs); this.setComplexBookingType(pObject.complexBookingType); this.setAnotherID(pObject.anotherID); } } /** * Method sets attribute {@link #internalID}.
* * @param pInternalID Value to which {@link #internalID} should be set. * @return {@link BuilderBase} Instance of this builder to support chaining setters. Method never returns null. */ public BuilderBase setInternalID( long pInternalID ) { // Assign value to attribute internalID = pInternalID; return this; } public BuilderBase setInternalIDXYZ( int value ) { // "long" internalIDXYZ = value; return this; } /** * Method sets attribute {@link #referenceID}.
* * @param pReferenceID Value to which {@link #referenceID} should be set. * @return {@link BuilderBase} Instance of this builder to support chaining setters. Method never returns null. */ public BuilderBase setReferenceID( String pReferenceID ) { // Assign value to attribute referenceID = pReferenceID; return this; } public BuilderBase setReferenceIDXYZ( int value ) { // "String" referenceIDXYZ = value; return this; } /** * Method sets association {@link #bookingIDs}.
* * @param pBookingIDs Collection to which {@link #bookingIDs} should be set. * @return {@link BuilderBase} Instance of this builder to support chaining setters. Method never returns null. */ public BuilderBase setBookingIDs( List pBookingIDs ) { // To ensure immutability we have to copy the content of the passed collection. if (pBookingIDs != null) { bookingIDs = new ArrayList(pBookingIDs); } else { bookingIDs = null; } return this; } /** * Method adds the passed objects to association {@link #bookingIDs}.
* * @param pBookingIDs Array of objects that should be added to {@link #bookingIDs}. The parameter may be null. * @return {@link BuilderBase} Instance of this builder to support chaining. Method never returns null. */ public BuilderBase addToBookingIDs( BookingID... pBookingIDs ) { if (pBookingIDs != null) { if (bookingIDs == null) { bookingIDs = new ArrayList(); } bookingIDs.addAll(Arrays.asList(pBookingIDs)); } return this; } public BuilderBase setBookingIDsXYZ( int value ) { // "com.anaptecs.jeaf.junit.openapi.base.BookingID" bookingIDsXYZ = value; return this; } /** * Method sets association {@link #complexBookingType}.
* * @param pComplexBookingType Value to which {@link #complexBookingType} should be set. * @return {@link BuilderBase} Instance of this builder to support chaining setters. Method never returns null. */ public BuilderBase setComplexBookingType( ComplexBookingType pComplexBookingType ) { complexBookingType = pComplexBookingType; return this; } public BuilderBase setComplexBookingTypeXYZ( int value ) { // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" complexBookingTypeXYZ = value; return this; } /** * Method sets attribute {@link #anotherID}.
* * @param pAnotherID Value to which {@link #anotherID} should be set. * @return {@link BuilderBase} Instance of this builder to support chaining setters. Method never returns null. */ public BuilderBase setAnotherID( Integer pAnotherID ) { // Assign value to attribute anotherID = pAnotherID; return this; } public BuilderBase setAnotherIDXYZ( int value ) { // "java.lang.Integer" anotherIDXYZ = value; return this; } // Ooops, I also forgot to implement that for our builders ;-( /** * Method creates a new instance of class ComplexBookingID. The object will be initialized with the values of the * builder. * * @return ComplexBookingID Created object. The method never returns null. */ public ComplexBookingID build( ) { return new ComplexBookingID(this); } /** * Method creates a new validated instance of class ComplexBookingID. The object will be initialized with the values * of the builder and validated afterwards. * * @return ComplexBookingID Created and validated object. The method never returns null. * @throws ConstraintViolationException in case that one or more validations for the created object failed. */ public ComplexBookingID buildValidated( ) throws ConstraintViolationException { ComplexBookingID lPOJO = this.build(); ValidationTools.getValidationTools().enforceObjectValidation(lPOJO); return lPOJO; } } /** * Method returns attribute {@link #internalID}.
* Internal ID
* 2nd line
* 3rd line * * @return long Value to which {@link #internalID} is set. */ public long getInternalID( ) { return internalID; } /** * Method sets attribute {@link #internalID}.
* Internal ID
* 2nd line
* 3rd line * * @param pInternalID Value to which {@link #internalID} should be set. */ public void setInternalID( long pInternalID ) { // Assign value to attribute internalID = pInternalID; } public int getInternalIDXYZ( ) { // "long" return internalIDXYZ; } public void setInternalIDXYZ( int value ) { internalIDXYZ = value; } /** * Method returns attribute {@link #referenceID}.
* * @return {@link String} Value to which {@link #referenceID} is set. */ public String getReferenceID( ) { return referenceID; } /** * Method sets attribute {@link #referenceID}.
* * @param pReferenceID Value to which {@link #referenceID} should be set. */ public void setReferenceID( String pReferenceID ) { // Assign value to attribute referenceID = pReferenceID; } public int getReferenceIDXYZ( ) { // "String" return referenceIDXYZ; } public void setReferenceIDXYZ( int value ) { referenceIDXYZ = value; } /** * Method returns association {@link #bookingIDs}.
* * @return {@link List} Value to which {@link #bookingIDs} is set. The method never returns null and the * returned collection is unmodifiable. */ public List getBookingIDs( ) { // Return all BookingID objects as unmodifiable collection. return Collections.unmodifiableList(bookingIDs); } /** * Method adds the passed object to {@link #bookingIDs}. * * @param pBookingIDs Object that should be added to {@link #bookingIDs}. The parameter must not be null. */ public void addToBookingIDs( BookingID pBookingIDs ) { // Check parameter "pBookingIDs" for invalid value null. Check.checkInvalidParameterNull(pBookingIDs, "pBookingIDs"); // Add passed object to collection of associated BookingID objects. bookingIDs.add(pBookingIDs); } /** * Method adds all passed objects to {@link #bookingIDs}. * * @param pBookingIDs Collection with all objects that should be added to {@link #bookingIDs}. The parameter must not * be null. */ public void addToBookingIDs( Collection pBookingIDs ) { // Check parameter "pBookingIDs" for invalid value null. Check.checkInvalidParameterNull(pBookingIDs, "pBookingIDs"); // Add all passed objects. for (BookingID lNextObject : pBookingIDs) { this.addToBookingIDs(lNextObject); } } /** * Method removes the passed object from {@link #bookingIDs}.
* * @param pBookingIDs Object that should be removed from {@link #bookingIDs}. The parameter must not be null. */ public void removeFromBookingIDs( BookingID pBookingIDs ) { // Check parameter for invalid value null. Check.checkInvalidParameterNull(pBookingIDs, "pBookingIDs"); // Remove passed object from collection of associated BookingID objects. bookingIDs.remove(pBookingIDs); } /** * Method removes all objects from {@link #bookingIDs}. */ public void clearBookingIDs( ) { // Remove all objects from association "bookingIDs". bookingIDs.clear(); } public int getBookingIDsXYZ( ) { // "com.anaptecs.jeaf.junit.openapi.base.BookingID" return bookingIDsXYZ; } public void setBookingIDsXYZ( int value ) { bookingIDsXYZ = value; } /** * Method returns association {@link #complexBookingType}.
* * @return {@link ComplexBookingType} Value to which {@link #complexBookingType} is set. */ public ComplexBookingType getComplexBookingType( ) { return complexBookingType; } /** * Method sets association {@link #complexBookingType}.
* * @param pComplexBookingType Value to which {@link #complexBookingType} should be set. */ public void setComplexBookingType( ComplexBookingType pComplexBookingType ) { complexBookingType = pComplexBookingType; } /** * Method unsets {@link #complexBookingType}. */ public final void unsetComplexBookingType( ) { complexBookingType = null; } public int getComplexBookingTypeXYZ( ) { // "com.anaptecs.jeaf.junit.openapi.base.ComplexBookingType" return complexBookingTypeXYZ; } public void setComplexBookingTypeXYZ( int value ) { complexBookingTypeXYZ = value; } /** * Method returns attribute {@link #anotherID}.
* * @return {@link Integer} Value to which {@link #anotherID} is set. */ public Integer getAnotherID( ) { return anotherID; } /** * Method sets attribute {@link #anotherID}.
* * @param pAnotherID Value to which {@link #anotherID} should be set. */ public void setAnotherID( Integer pAnotherID ) { // Assign value to attribute anotherID = pAnotherID; } public int getAnotherIDXYZ( ) { // "java.lang.Integer" return anotherIDXYZ; } public void setAnotherIDXYZ( int value ) { anotherIDXYZ = value; } public void doSomethingGenerated( ) { // Ooops, I forget to implement that ;-) } /** * 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("internalID: "); lBuilder.append(internalID); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("referenceID: "); lBuilder.append(referenceID); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("anotherID: "); lBuilder.append(anotherID); 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 ComplexBookingID objects. The method never * returns null. */ public ComplexBookingID.Builder toBuilder( ) { return new ComplexBookingID.Builder((ComplexBookingID) this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy