com.anaptecs.jeaf.junit.pojo.PlainPOJO Maven / Gradle / Ivy
/*
* anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
*
* Copyright 2004 - 2019. All rights reserved.
*/
package com.anaptecs.jeaf.junit.pojo;
public class PlainPOJO extends PlainPOJOBase {
/**
* 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 PlainPOJO( ) {
}
/**
* Initialize object. Nothing special to do.
*/
protected PlainPOJO( PlainPOJO.BuilderBase pBuilder ) {
super(pBuilder);
}
/**
* Method returns a new builder.
*
* @return {@link Builder} New builder that can be used to create new PlainPOJO objects.
*/
public static Builder builder( ) {
return new Builder();
}
/**
* Class implements builder to create a new instance of class PlainPOJO. As the class has readonly attributes or
* associations instances can not be created directly. Instead this builder class has to be used.
*/
public static class Builder extends PlainPOJO.BuilderBase {
/**
* Use {@link PlainPOJO#builder()} instead of protected constructor to create new builder.
*/
protected Builder( ) {
}
/**
* Use {@link PlainPOJO#builder(PlainPOJO)} instead of protected constructor to create new builder.
*/
protected Builder( PlainPOJO pObject ) {
super(pObject);
}
}
/**
*/
@Deprecated
@Override
public void doDeprectedStuff( ) {
// TODO: Implement business logic for method.
}
/**
* @param pParam1
* Deprecated. (since: , removed with: )
* @param pParam2
* @return {@link String}
* Deprecated. (since: , removed with: )
*/
@Deprecated
@Override
public String doSomething( @Deprecated int pParam1, int pParam2 ) {
// TODO: Implement business logic for method.
return null;
}
}