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

org.gradle.buildinit.plugins.MavenConversionIntegrationTest.multiModule.webinar-impl.src.main.java.webinar.Webinar Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
package webinar;

import org.apache.commons.lang.StringUtils;

public class Webinar implements Demoable {
  
  private final String description;
  
  public Webinar() {
    this("I'm happy today!");
  }
  
  public Webinar(String description) {
    this.description = description;
  }

  public String getDescription() {
    return StringUtils.normalizeSpace(description);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy