Package com.socrata.model

Examples of com.socrata.model.Comment


        try {
            final DatasetInfo publishedView = importer.publish(newDataset.getId());
            TestCase.assertEquals(null, publishedView.getGrants());


            final Comment comment = new Comment();
            comment.setBody("Hello Kitty");
            comment.setTitle("Hello Title");

            Comment retVal = importer.addComment(publishedView.getId(), comment);
            System.out.println(retVal);

        } finally {
            importer.deleteDataset(newDataset.getId());
        }
View Full Code Here

TOP

Related Classes of com.socrata.model.Comment

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.