package javax.obex;

import java.io.IOException;

public interface HeaderSet
{
 public int COUNT = 192;
 public int NAME = 1;
 public int TYPE = 66;
 public int LENGTH = 195;
 public int TIME_ISO_8601 = 68;
 public int TIME_4_BYTE = 196;
 public int DESCRIPTION = 5;
 public int TARGET = 70;
 public int HTTP = 71;
 public int WHO = 74;
 public int OBJECT_CLASS = 79;
 public int APPLICATION_PARAMETER = 76;

 public void setHeader(int, Object);
 
 public Object getHeader(int) throws IOException;
 
 public int[] getHeaderList() throws IOException;
 
 public void createAuthenticationChallenge(String, boolean, boolean);
 
 public int getResponseCode() throws IOException;
 
}