Package org.jasig.portal.layout.profile.UserAgentProfileMapper

Examples of org.jasig.portal.layout.profile.UserAgentProfileMapper.Mapping


       
        mapper.setDefaultProfileName("profile");
        mapper.setUserAgentHeader("agent");
       
        List<Mapping> mappings = new ArrayList<Mapping>();
        Mapping mapping1 = new Mapping();
        mapping1.setPattern(".*iPad.*");
        mapping1.setProfileName("tablet");
        Mapping mapping2 = new Mapping();
        mapping2.setPattern(".*iOS.*");
        mapping2.setProfileName("mobile");
        mappings.add(mapping1);
        mappings.add(mapping2);
        mapper.setMappings(mappings);
    }
View Full Code Here

TOP

Related Classes of org.jasig.portal.layout.profile.UserAgentProfileMapper.Mapping

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.