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

org.jboss.resteasy.plugins.providers.FileRange Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.jboss.resteasy.plugins.providers;

import java.io.File;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 */
public class FileRange
{
   private File file;

   public File getFile()
   {
      return file;
   }

   public long getBegin()
   {
      return begin;
   }

   public long getEnd()
   {
      return end;
   }

   private long begin;
   private long end;

   public FileRange(File file, long begin, long end)
   {
      this.file = file;
      this.begin = begin;
      this.end = end;
   }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy