1 29 30 package com.caucho.server.log; 31 32 35 public class AccessLogBuffer { 36 private final byte []_buffer = new byte[AccessLog.BUFFER_SIZE]; 37 private int _length; 38 39 public byte []getBuffer() 40 { 41 return _buffer; 42 } 43 44 public int getLength() 45 { 46 return _length; 47 } 48 49 public void setLength(int length) 50 { 51 _length = length; 52 } 53 } 54 | Popular Tags |