private static ByteBuffer getRandomByteBuffer()

in src/main/java/com/amazonaws/s3/accesspoints/PutObject_Demo_StandaloneUser.java [40:44]


	private static ByteBuffer getRandomByteBuffer(int size) throws IOException {
		byte[] b = new byte[size];
		new Random().nextBytes(b);
		return ByteBuffer.wrap(b);
	}