Examples of RedirectUserAgentConditionData


Examples of org.exoplatform.portal.pom.data.RedirectUserAgentConditionData

        this.doesNotContain = doesNotContain;
    }

    @Override
    public RedirectUserAgentConditionData build() {
        RedirectUserAgentConditionData userAgentConditionData = new RedirectUserAgentConditionData(storageId, storageName);

        userAgentConditionData.getUserAgentContains().addAll(contains);
        userAgentConditionData.getUserAgentDoesNotContain().addAll(doesNotContain);

        return userAgentConditionData;
    }
View Full Code Here

Examples of org.exoplatform.portal.pom.data.RedirectUserAgentConditionData

        this.doesNotContain = doesNotContain;
    }

    @Override
    public RedirectUserAgentConditionData build() {
        RedirectUserAgentConditionData userAgentConditionData = new RedirectUserAgentConditionData(storageId, storageName);

        if (contains != null) {
            userAgentConditionData.getUserAgentContains().addAll(contains);
        }
        if (doesNotContain != null) {
            userAgentConditionData.getUserAgentDoesNotContain().addAll(doesNotContain);
        }

        return userAgentConditionData;
    }
View Full Code Here
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.