Package com.Yasna.forum.util

Examples of com.Yasna.forum.util.ClientIP


            user = jr.getProfileManager().getUser( js.getAuthorization().getUserID() );
        } catch( UserNotFoundException e ) {
            return SKIP_BODY;
        }
        try {
            ClientIP clientip = new ClientIP(localIP,IP);
            ForumMessage nm = cf.createMessage( user,clientip );
            nm.setSubject( subject );
            nm.setBody( body.toString() );
            message = cf.applyFilters(nm);
        } catch( UnauthorizedException ue ) {
View Full Code Here


            user = jr.getProfileManager().getUser( js.getAuthorization().getUserID() );
        } catch( UserNotFoundException e ) {
            throw new JspException("Post Message, user account not found");
        }
        try {
            ClientIP clientIP = new ClientIP(localIP,IP);
            message = pf.createMessage( user,clientIP );
            message.setSubject( subject );
            message.setBody( body.toString() );
            message.setProperty("IP",IP);
            if(localIP !=null){
View Full Code Here

TOP

Related Classes of com.Yasna.forum.util.ClientIP

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.