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

com.anaptecs.spring.base.DeprecatedContext 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 - 2019. All rights reserved.
 */
package com.anaptecs.spring.base;

import java.util.Locale;
import java.util.Objects;

import javax.validation.constraints.NotEmpty;

import com.anaptecs.annotations.MyNotNullProperty;
import com.anaptecs.jeaf.validation.api.spring.SpringValidationExecutor;

@Deprecated
public class DeprecatedContext {
  /**
   * Constant for the name of attribute "accessToken".
   */
  public static final String ACCESSTOKEN = "accessToken";

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

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

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

  @NotEmpty
  private String accessToken;

  /**
   * 
* Example(s):
*
    *
  • en
  • *
*

* Header-Param: lang */ private Locale language; private long resellerID; private String queryParam; /** * 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. */ public DeprecatedContext( ) { } /** * Initialize object using the passed builder. * * @param pBuilder Builder that should be used to initialize this object. The parameter must not be null. */ protected DeprecatedContext( Builder pBuilder ) { // Read attribute values from builder. accessToken = pBuilder.accessToken; language = pBuilder.language; resellerID = pBuilder.resellerID; queryParam = pBuilder.queryParam; } /** * Method returns a new builder. * * @return {@link Builder} New builder that can be used to create new DeprecatedContext objects. */ public static Builder builder( ) { return new Builder(); } /** * Convenience method to create new instance of class DeprecatedContext. * * * @param pAccessToken Value to which {@link #accessToken} should be set. * * @param pLanguage Value to which {@link #language} should be set. * * @param pResellerID Value to which {@link #resellerID} should be set. * * @param pQueryParam Value to which {@link #queryParam} should be set. * * @return {@link com.anaptecs.spring.base.DeprecatedContext} */ public static DeprecatedContext of( String pAccessToken, Locale pLanguage, long pResellerID, String pQueryParam ) { DeprecatedContext.Builder lBuilder = DeprecatedContext.builder(); lBuilder.setAccessToken(pAccessToken); lBuilder.setLanguage(pLanguage); lBuilder.setResellerID(pResellerID); lBuilder.setQueryParam(pQueryParam); return lBuilder.build(); } /** * Class implements builder to create a new instance of class DeprecatedContext. */ @Deprecated public static class Builder { @NotEmpty private String accessToken; /** *
* Example(s):
*

    *
  • en
  • *
*

* Header-Param: lang */ private Locale language; private long resellerID; private String queryParam; /** * Use {@link DeprecatedContext#builder()} instead of private constructor to create new builder. */ protected Builder( ) { } /** * Use {@link DeprecatedContext#builder(DeprecatedContext)} instead of private constructor to create new builder. */ protected Builder( DeprecatedContext pObject ) { if (pObject != null) { // Read attribute values from passed object. this.setAccessToken(pObject.accessToken); this.setLanguage(pObject.language); this.setResellerID(pObject.resellerID); this.setQueryParam(pObject.queryParam); } } /** * Method returns a new builder. * * @return {@link Builder} New builder that can be used to create new DeprecatedContext objects. */ public static Builder newBuilder( ) { return new Builder(); } /** * Method creates a new builder and initialize it with the data from the passed object. * * @param pObject Object that should be used to initialize the builder. The parameter may be null. * @return {@link Builder} New builder that can be used to create new DeprecatedContext objects. The method never * returns null. */ public static Builder newBuilder( DeprecatedContext pObject ) { return new Builder(pObject); } /** * Method sets attribute {@link #accessToken}.
* * @param pAccessToken Value to which {@link #accessToken} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setAccessToken( @MyNotNullProperty String pAccessToken ) { // Assign value to attribute accessToken = pAccessToken; return this; } /** * Method sets attribute {@link #language}.
* * @param pLanguage Value to which {@link #language} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setLanguage( @MyNotNullProperty Locale pLanguage ) { // Assign value to attribute language = pLanguage; return this; } /** * Method sets attribute {@link #resellerID}.
* * @param pResellerID Value to which {@link #resellerID} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setResellerID( long pResellerID ) { // Assign value to attribute resellerID = pResellerID; return this; } /** * Method sets attribute {@link #queryParam}.
* * @param pQueryParam Value to which {@link #queryParam} should be set. * @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null. */ public Builder setQueryParam( @MyNotNullProperty String pQueryParam ) { // Assign value to attribute queryParam = pQueryParam; return this; } /** * Method creates a new instance of class DeprecatedContext. The object will be initialized with the values of the * builder. * * @return DeprecatedContext Created object. The method never returns null. */ public DeprecatedContext build( ) { DeprecatedContext lObject = new DeprecatedContext(this); SpringValidationExecutor.getValidationExecutor().validateObject(lObject); return lObject; } } /** * Method returns attribute {@link #accessToken}.
* * @return {@link String} Value to which {@link #accessToken} is set. */ @MyNotNullProperty public String getAccessToken( ) { return accessToken; } /** * Method sets attribute {@link #accessToken}.
* * @param pAccessToken Value to which {@link #accessToken} should be set. */ public void setAccessToken( @MyNotNullProperty String pAccessToken ) { // Assign value to attribute accessToken = pAccessToken; } /** * Method returns attribute {@link #language}.
* * @return {@link Locale} Value to which {@link #language} is set. */ @MyNotNullProperty public Locale getLanguage( ) { return language; } /** * Method sets attribute {@link #language}.
* * @param pLanguage Value to which {@link #language} should be set. */ public void setLanguage( @MyNotNullProperty Locale pLanguage ) { // Assign value to attribute language = pLanguage; } /** * Method returns attribute {@link #resellerID}.
* * @return long Value to which {@link #resellerID} is set. */ public long getResellerID( ) { return resellerID; } /** * Method sets attribute {@link #resellerID}.
* * @param pResellerID Value to which {@link #resellerID} should be set. */ public void setResellerID( long pResellerID ) { // Assign value to attribute resellerID = pResellerID; } /** * Method returns attribute {@link #queryParam}.
* * @return {@link String} Value to which {@link #queryParam} is set. */ @MyNotNullProperty public String getQueryParam( ) { return queryParam; } /** * Method sets attribute {@link #queryParam}.
* * @param pQueryParam Value to which {@link #queryParam} should be set. */ public void setQueryParam( @MyNotNullProperty String pQueryParam ) { // Assign value to attribute queryParam = pQueryParam; } @Override public int hashCode( ) { final int lPrime = 31; int lResult = 1; lResult = lPrime * lResult + Objects.hashCode(accessToken); lResult = lPrime * lResult + Objects.hashCode(language); lResult = lPrime * lResult + Long.hashCode(resellerID); lResult = lPrime * lResult + Objects.hashCode(queryParam); return lResult; } @Override public boolean equals( Object pObject ) { boolean lEquals; if (this == pObject) { lEquals = true; } else if (pObject == null) { lEquals = false; } else if (this.getClass() != pObject.getClass()) { lEquals = false; } else { DeprecatedContext lOther = (DeprecatedContext) pObject; lEquals = Objects.equals(accessToken, lOther.accessToken) && Objects.equals(language, lOther.language) && resellerID == lOther.resellerID && Objects.equals(queryParam, lOther.queryParam); } return lEquals; } /** * 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("accessToken: "); lBuilder.append(accessToken); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("language: "); lBuilder.append(language); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("resellerID: "); lBuilder.append(resellerID); lBuilder.append(System.lineSeparator()); lBuilder.append(pIndent); lBuilder.append("queryParam: "); lBuilder.append(queryParam); 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 DeprecatedContext objects. The method never * returns null. */ public Builder toBuilder( ) { return new Builder(this); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy