import com.google.common.base.Charsets;
import com.google.common.hash.Hashing;
import com.google.common.collect.Lists;
import java.util.ArrayList;
import java.util.List;
import java.text.MessageFormat;

/**
 * Use this class to change the password stored in the databae from one that is
 * visible as plain text (a security threat) to one that is "hashed". Hashing is
 * a one-way encryption system. Hashes can be generated but cannot be reverse
 * engineered, which is why they are called one-way hashes. Use this class to
 * generate a hashed password, based on the original plain text version, using
 * SHA-256, which is a superior hashing algorithm. Then copy the output from the
 * console and use it to replace what you have in your database.
 *
 * @author jlombardo
 */
public class Main {
    public static void main(String[] args) {
    	List<Object> params = new ArrayList<>();
    	params.add(1);
    	params.add(2);
    	params.add(3);
    	
        Object p2 = Lists.partition(params, 4);
        System.out.println(p2);
    }
}