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

com.salesmanager.shop.model.content.Content Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.content;

import java.io.Serializable;
import javax.validation.constraints.NotEmpty;

public abstract class Content implements Serializable {

  /**
   * 
   */
  private static final long serialVersionUID = 1L;
  @NotEmpty
  private String name;
  private String contentType;

  public Content() {}

  public Content(String name) {
    this.name = name;
  }

  public Content(String name, String contentType) {
    this.name = name;
    this.contentType = contentType;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getName() {
    return name;
  }

  public String getContentType() {
    return contentType;
  }

  public void setContentType(String contentType) {
    this.contentType = contentType;
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy