Package com.dodo.blog.ui.page

Source Code of com.dodo.blog.ui.page.UnauthorizedPage

package com.dodo.blog.ui.page;

import com.dodo.blog.ui.component.container.Paragraph;

/**
* @author <a href="mailto:pohorelec@comvai.com">Jozef Pohorelec</a>
*/
public class UnauthorizedPage
        extends AbstractPage
{
    private static final long serialVersionUID = 1L;

    @Override
    public void onRender()
    {
        setHeader( localize( "header.unauthorized" ) );

        Paragraph text = new Paragraph( localize( "text.unauthorizedAccess" ) );
        text.setAttribute( "style", "color: #a00" );
        add( text );
    }
}
TOP

Related Classes of com.dodo.blog.ui.page.UnauthorizedPage

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.