Package info.bliki.api

Examples of info.bliki.api.Connector.edit()


        Connector connector = new Connector();
        connector.login(user);

        try {
            // there is no rights to do this action. The error must be received.
            connector.edit(user, Edit.create().title("MainTestTest").text("blabla"));
            fail("UnexpectedAnswerException must be thrown");
        } catch (UnexpectedAnswerException e) {
            // ok
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.