Examples of RedirectDevicePropertyConditionData


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

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
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.