Package org.exoplatform.portal.pom.data

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


        this.matches = matches;
    }

    @Override
    public RedirectDevicePropertyConditionData build() {
        RedirectDevicePropertyConditionData conditionData = new RedirectDevicePropertyConditionData(this.storageId,
                this.storageName, propertyName);

        conditionData.setGreaterThan(greaterThan);
        conditionData.setLessThan(lessThan);
        conditionData.setEquals(equals);

        if (matches != null) {
            conditionData.setMatches(Pattern.compile(matches));
        }

        return conditionData;
    }
View Full Code Here


        this.matches = matches;
    }

    @Override
    public RedirectDevicePropertyConditionData build() {
        RedirectDevicePropertyConditionData conditionData = new RedirectDevicePropertyConditionData(this.storageId,
                this.storageName, propertyName);

        conditionData.setGreaterThan(greaterThan);
        conditionData.setLessThan(lessThan);
        conditionData.setEquals(equals);

        if (matches != null) {
            conditionData.setMatches(Pattern.compile(matches));
        }

        return conditionData;
    }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.pom.data.RedirectDevicePropertyConditionData

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.