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

de.digitalcollections.iiif.bookshelf.model.AbstractDocument Maven / Gradle / Ivy

package de.digitalcollections.iiif.bookshelf.model;

import java.math.BigInteger;
import org.springframework.data.annotation.Id;

public class AbstractDocument {

  @Id
  private BigInteger documentId;

  public void setId(BigInteger id) {
    this.documentId = id;
  }

  public BigInteger getId() {
    return documentId;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy