![JAR search and dependency download from the Maven repository](/logo.png)
org.bonitasoft.web.designer.model.page.Component Maven / Gradle / Ivy
/**
* Copyright (C) 2015 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2.0 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.bonitasoft.web.designer.model.page;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.bonitasoft.web.designer.model.JsonViewPersistence;
import org.bonitasoft.web.designer.visitor.ElementVisitor;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonView;
@JsonTypeName("component")
public class Component extends Element {
private String id;
private String description;
@JsonView({ JsonViewPersistence.class })
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@JsonView({ JsonViewPersistence.class })
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public T accept(ElementVisitor visitor) {
return visitor.visit(this);
}
@Override
public boolean equals(final Object obj) {
if (obj instanceof Component) {
final Component other = (Component) obj;
return new EqualsBuilder()
.append(id, other.id)
.append(description, other.description)
.append(getPropertyValues(), other.getPropertyValues())
.append(getDimension(), other.getDimension())
.isEquals();
} else {
return false;
}
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 37)
.append(id)
.append(description)
.append(getPropertyValues())
.append(getDimension())
.toHashCode();
}
@Override
public String toString() {
return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE)
.append("id", id)
.append("description", description)
.append("propertyValues", getPropertyValues())
.append("dimension", getDimension())
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy