Methods Summary |
---|
public java.lang.String | getContextPath()
return contextPath;
|
public byte[] | getData()
return data;
|
public int | getDataLength()
return dataLength;
|
public java.lang.String | getFileName()
return fileName;
|
public int | getMessageNumber()
return messageNumber;
|
public long | getTotalLength()
return totalLength;
|
public long | getTotalNrOfMsgs()
return totalNrOfMsgs;
|
public java.lang.String | getUniqueId()
StringBuffer result = new StringBuffer(getFileName());
result.append("#-#");
result.append(getMessageNumber());
result.append("#-#");
result.append(System.currentTimeMillis());
return result.toString();
|
public void | setData(byte[] data, int length)
this.data = data;
this.dataLength = length;
|
public void | setDataLength(int dataLength)
this.dataLength = dataLength;
|
public void | setFileName(java.lang.String fileName)
this.fileName = fileName;
|
public void | setMessageNumber(int messageNumber)
this.messageNumber = messageNumber;
|
public void | setTotalLength(long totalLength)
this.totalLength = totalLength;
|
public void | setTotalNrOfMsgs(long totalNrOfMsgs)
this.totalNrOfMsgs = totalNrOfMsgs;
|