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

de.digitalcollections.iiif.presentation.model.impl.v2.ImageServiceImpl Maven / Gradle / Ivy

The newest version!
package de.digitalcollections.iiif.presentation.model.impl.v2;

import de.digitalcollections.iiif.presentation.model.api.v2.ImageService;
import de.digitalcollections.iiif.presentation.model.api.v2.Tile;
import java.util.List;

public class ImageServiceImpl extends ServiceImpl implements ImageService {

  private int height;
  private int width;

  private List tiles;

  @Override
  public int getHeight() {
    return height;
  }

  @Override
  public void setHeight(int height) {
    this.height = height;
  }

  @Override
  public int getWidth() {
    return width;
  }

  @Override
  public void setWidth(int width) {
    this.width = width;
  }

  @Override
  public List getTiles() {
    return tiles;
  }

  @Override
  public void setTiles(List tiles) {
    this.tiles = tiles;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy