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

com.devonfw.cobigen.openapiplugin.model.InfoDef Maven / Gradle / Ivy

There is a newer version: 2021.12.006
Show newest version
package com.devonfw.cobigen.openapiplugin.model;

/**
 * Definition that stores data from the information tag
 */
@SuppressWarnings("javadoc")
public class InfoDef {
  private String title;

  private String description;

  public String getTitle() {

    return this.title;
  }

  public void setTitle(String title) {

    this.title = title;
  }

  public String getDescription() {

    return this.description;
  }

  public void setDescription(String description) {

    this.description = description;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy