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

com.intershop.oms.test.businessobject.OMSBusinessObject Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
package com.intershop.oms.test.businessobject;

public abstract class OMSBusinessObject
{
    /**
     * Convert the given object to string with each line indented by 4 spaces
     * (except the first line).
     */
    protected String toIndentedString(Object o )
    {
      if (o == null)
      {
        return "null";
      }
      return o.toString().replace("\n", "\n    ");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy