/******************************************************************************* * Copyright 2017 Ivan Shubin http://galenframework.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.galenframework.suite; import java.awt.Dimension; import java.util.List; import com.galenframework.browser.BrowserFactory; import com.galenframework.browser.BrowserFactory; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.builder.ToStringBuilder; public class GalenPageTest { private String title; private String url; private Dimension screenSize; private List<GalenPageAction> actions; private BrowserFactory browserFactory; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Dimension getScreenSize() { return screenSize; } public void setScreenSize(Dimension screenSize) { this.screenSize = screenSize; } public List<GalenPageAction> getActions() { return actions; } public void setActions(List<GalenPageAction> actions) { this.actions = actions; } public GalenPageTest withActions(List<GalenPageAction> actions) { setActions(actions); return this; } public GalenPageTest withSize(Dimension size) { setScreenSize(size); return this; } public GalenPageTest withUrl(String url) { this.url = url; return this; } public GalenPageTest withSize(int width, int height) { this.screenSize = new Dimension(width, height); return this; } public GalenPageTest withBrowserFactory(BrowserFactory browserFactory) { this.setBrowserFactory(browserFactory); return this; } public BrowserFactory getBrowserFactory() { return browserFactory; } public void setBrowserFactory(BrowserFactory browserFactory) { this.browserFactory = browserFactory; } @Override public int hashCode() { return new HashCodeBuilder() //@formatter:off .append(this.actions) .append(this.browserFactory) .append(this.screenSize) .append(this.url) .toHashCode(); //@formatter:on } @Override public String toString() { return new ToStringBuilder(this) //@formatter:off .append("url", this.url) .append("screenSize", this.screenSize) .append("browserFactory", this.browserFactory) .append("actions", this.actions) .toString(); //@formatter:on } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (obj == this) { return true; } if (!(obj instanceof GalenPageTest)) { return false; } GalenPageTest rhs = (GalenPageTest)obj; return new EqualsBuilder() //@formatter:off .append(this.actions, rhs.actions) .append(this.browserFactory, rhs.browserFactory) .append(this.screenSize, rhs.screenSize) .append(this.url, rhs.url) .isEquals(); //@formatter:on } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public GalenPageTest withTitle(String title) { setTitle(title); return this; } }