Package com.apress.progwt.client.domain

Examples of com.apress.progwt.client.domain.School


    private static final String TEXT_XSS = "dsfsdf<em>sdft</em>est<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT> text";
    private static final String TEXT_XSS_C = "dsfsdf<em>sdft</em>est text";

    public void testExecute() throws SiteException {

        School sc = new School();
        sc.setId(66);
        sc.setName("Dart");

        User au = new User();
        au.setId(77);
        au.setUsername("Author");
View Full Code Here


    }

    public void testExecuteNoXSS() throws SiteException {

        School sc = new School();
        sc.setId(66);
        sc.setName("Dart");

        User au = new User();
        au.setId(77);
        au.setUsername("Author");
View Full Code Here

TOP

Related Classes of com.apress.progwt.client.domain.School

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.