Package org.easycassandra.bean.model.Picture

Examples of org.easycassandra.bean.model.Picture.Details


     * run the test.
     */
    @Test
    public void insertTest() {
        Picture picture = new Picture();
        picture.setDetail(new Details());
        picture.setName("mypicture");
        picture.getDetail().setFileName("otavio.png");
        byte[] file = new byte[SIZE];
        new Random().nextBytes(file);
        picture.getDetail().setContents(file);
View Full Code Here

TOP

Related Classes of org.easycassandra.bean.model.Picture.Details

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.