Uses of Interface
wjhk.jupload2.upload.helper.ByteArrayEncoder

Packages that use ByteArrayEncoder
wjhk.jupload2.filedata What is FileData for ? 
wjhk.jupload2.policies This package contains the upload policies. 
wjhk.jupload2.upload Implementations of the various protocol-specific tasks. 
wjhk.jupload2.upload.helper   
 

Uses of ByteArrayEncoder in wjhk.jupload2.filedata
 

Methods in wjhk.jupload2.filedata with parameters of type ByteArrayEncoder
 void FileData.appendFileProperties(ByteArrayEncoder bae)
          Called during the upload, by the FileUploadThread.
 void DefaultFileData.appendFileProperties(ByteArrayEncoder bae)
          Called during the upload, by the FileUploadThread.
 

Uses of ByteArrayEncoder in wjhk.jupload2.policies
 

Methods in wjhk.jupload2.policies that return ByteArrayEncoder
 ByteArrayEncoder UploadPolicy.onAppendHeader(ByteArrayEncoder sb)
          Append specific headers for this upload (session cookies, for instance).
 ByteArrayEncoder DefaultUploadPolicy.onAppendHeader(ByteArrayEncoder bae)
           
 

Methods in wjhk.jupload2.policies with parameters of type ByteArrayEncoder
 ByteArrayEncoder UploadPolicy.onAppendHeader(ByteArrayEncoder sb)
          Append specific headers for this upload (session cookies, for instance).
 ByteArrayEncoder DefaultUploadPolicy.onAppendHeader(ByteArrayEncoder bae)
           
 

Uses of ByteArrayEncoder in wjhk.jupload2.upload
 

Fields in wjhk.jupload2.upload declared as ByteArrayEncoder
private  ByteArrayEncoder[] FileUploadThreadHTTP.heads
          local head within the multipart post, for each file.
private  ByteArrayEncoder[] FileUploadThreadHTTP.tails
          same as heads, for the ... tail in the multipart post, for each file.
 

Methods in wjhk.jupload2.upload that return ByteArrayEncoder
private  ByteArrayEncoder FileUploadThreadHTTP.getFileHeader(int index, java.lang.String bound, int chunkPart)
          Returns the header for this file, within the http multipart body.
private  ByteArrayEncoder FileUploadThreadHTTP.getFormParamsForPostRequest(java.net.URL url)
          Converts the parameters in GET form to post form
 

Methods in wjhk.jupload2.upload with parameters of type ByteArrayEncoder
 void UploadFileData.appendFileProperties(ByteArrayEncoder bae)
          Called during the upload, by the FileUploadThread.
 

Uses of ByteArrayEncoder in wjhk.jupload2.upload.helper
 

Classes in wjhk.jupload2.upload.helper that implement ByteArrayEncoder
 class ByteArrayEncoderHTTP
          This class is a utility, which provide easy encoding for HTTP queries.
 

Methods in wjhk.jupload2.upload.helper that return ByteArrayEncoder
 ByteArrayEncoder ByteArrayEncoderHTTP.append(byte[] b)
          Append a stream, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoder.append(byte[] b)
          Append a stream, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoderHTTP.append(ByteArrayEncoder bae)
          Append a string, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoder.append(ByteArrayEncoder bae)
          Append a string, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoderHTTP.append(java.lang.String str)
          Append a string, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoder.append(java.lang.String str)
          Append a string, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoderHTTP.appendFileProperty(java.lang.String name, java.lang.String value)
          Append a property, name and value.
 ByteArrayEncoder ByteArrayEncoder.appendFileProperty(java.lang.String name, java.lang.String value)
          Append a property, name and value.
 ByteArrayEncoder ByteArrayEncoderHTTP.appendFormVariables(java.lang.String formname)
          Add to the current encoder all properties contained in the given HTML form.
 ByteArrayEncoder ByteArrayEncoder.appendFormVariables(java.lang.String formname)
          Add to the current encoder all properties contained in the given HTML form.
 

Methods in wjhk.jupload2.upload.helper with parameters of type ByteArrayEncoder
 ByteArrayEncoder ByteArrayEncoderHTTP.append(ByteArrayEncoder bae)
          Append a string, to be encoded at the current end of the byte array.
 ByteArrayEncoder ByteArrayEncoder.append(ByteArrayEncoder bae)
          Append a string, to be encoded at the current end of the byte array.