added simple semaphore file mechanism for session directory.
[vamsas.git] / src / org / vamsas / client / simpleclient / SimpleClientAppdata.java
1 /**
2  * 
3  */
4 package org.vamsas.client.simpleclient;
5
6 import java.io.DataInput;
7 import java.io.DataOutput;
8
9 import org.vamsas.client.IClientAppdata;
10
11 /**
12  * @author jimp
13  * Access interface to data chunks read from a VamsasArchiveReader stream 
14  * (or byte buffer input stream) or written to a VamsasArchive stream.
15  */
16 public class SimpleClientAppdata implements IClientAppdata {
17
18   /* (non-Javadoc)
19    * @see org.vamsas.client.IClientAppdata#getClientAppdata()
20    */
21   public byte[] getClientAppdata() {
22     // TODO Auto-generated method stub
23     return null;
24   }
25
26   /* (non-Javadoc)
27    * @see org.vamsas.client.IClientAppdata#getClientInputStream()
28    */
29   public DataInput getClientInputStream() {
30     // TODO Auto-generated method stub
31     return null;
32   }
33
34   /* (non-Javadoc)
35    * @see org.vamsas.client.IClientAppdata#getClientOutputStream()
36    */
37   public DataOutput getClientOutputStream() {
38     // TODO Auto-generated method stub
39     return null;
40   }
41
42   /* (non-Javadoc)
43    * @see org.vamsas.client.IClientAppdata#getUserAppdata()
44    */
45   public byte[] getUserAppdata() {
46     // TODO Auto-generated method stub
47     return null;
48   }
49
50   /* (non-Javadoc)
51    * @see org.vamsas.client.IClientAppdata#getUserInputStream()
52    */
53   public DataInput getUserInputStream() {
54     // TODO Auto-generated method stub
55     return null;
56   }
57
58   /* (non-Javadoc)
59    * @see org.vamsas.client.IClientAppdata#getUserOutputStream()
60    */
61   public DataOutput getUserOutputStream() {
62     // TODO Auto-generated method stub
63     return null;
64   }
65
66   /* (non-Javadoc)
67    * @see org.vamsas.client.IClientAppdata#hasClientAppdata()
68    */
69   public boolean hasClientAppdata() {
70     // TODO Auto-generated method stub
71     return false;
72   }
73
74   /* (non-Javadoc)
75    * @see org.vamsas.client.IClientAppdata#hasUserAppdata()
76    */
77   public boolean hasUserAppdata() {
78     // TODO Auto-generated method stub
79     return false;
80   }
81
82   /* (non-Javadoc)
83    * @see org.vamsas.client.IClientAppdata#setClientAppdata(byte[])
84    */
85   public void setClientAppdata(byte[] data) {
86     // TODO Auto-generated method stub
87     
88   }
89
90   /* (non-Javadoc)
91    * @see org.vamsas.client.IClientAppdata#setUserAppdata(byte[])
92    */
93   public void setUserAppdata(byte[] data) {
94     // TODO Auto-generated method stub
95     
96   }
97
98 }