Package org.apache.tapestry.portlet.bindings

Examples of org.apache.tapestry.portlet.bindings.UserAttributeBindingFactory


public class TestUserAttributeBinding extends HiveMindTestCase
{
    private IBinding newBinding(String bindingDescription, ValueConverter converter,
            Location location, PortletRequest request, String attributeName)
    {
        UserAttributeBindingFactory factory = new UserAttributeBindingFactory();
        factory.setValueConverter(converter);
        factory.setRequest(request);

        return factory.createBinding(null, bindingDescription, attributeName, location);
    }
View Full Code Here

TOP

Related Classes of org.apache.tapestry.portlet.bindings.UserAttributeBindingFactory

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.