View Javadoc

1   package com.bradmcevoy.http;
2   
3   import com.bradmcevoy.http.Response.Status;
4   
5   /** An immutable class to represent an item in a MultiStatus response
6    *
7    */
8   public class HrefStatus {
9       public final String href;
10      public final Response.Status status;
11  
12      public HrefStatus(String href, Status status) {
13          this.href = href;
14          this.status = status;
15      }
16  
17  
18  }