1 19 20 package com.sslexplorer.server.jetty; 21 22 import org.mortbay.util.Resource; 23 24 public class CacheState { 25 26 public final static int MISSING = 1; 27 public final static int FOUND = 2; 28 29 int state; 30 String path; 31 Resource resource; 32 33 40 public CacheState(int state, String path, Resource resource) { 41 super(); 42 this.state = state; 43 this.path = path; 44 this.resource = resource; 45 } 46 47 50 public String getPath() { 51 return path; 52 } 53 54 57 public Resource getResource() { 58 return resource; 59 } 60 61 64 public int getState() { 65 return state; 66 } 67 68 } 69 | Popular Tags |