io.camunda.tasklist.property.InterceptorPluginProperties Maven / Gradle / Ivy
/*
* Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under
* one or more contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright ownership.
* Licensed under the Camunda License 1.0. You may not use this file
* except in compliance with the Camunda License 1.0.
*/
package io.camunda.tasklist.property;
import java.util.Objects;
public class InterceptorPluginProperties {
private String id;
private String className;
private String jarPath;
public String getId() {
return id;
}
public void setId(final String id) {
this.id = id;
}
public String getClassName() {
return className;
}
public void setClassName(final String className) {
this.className = className;
}
public String getJarPath() {
return jarPath;
}
public void setJarPath(final String jarPath) {
this.jarPath = jarPath;
}
@Override
public int hashCode() {
return Objects.hash(id, className, jarPath);
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final InterceptorPluginProperties that = (InterceptorPluginProperties) o;
return Objects.equals(id, that.id)
&& Objects.equals(className, that.className)
&& Objects.equals(jarPath, that.jarPath);
}
@Override
public String toString() {
return "InterceptorPluginProperties{"
+ "id='"
+ id
+ '\''
+ ", className='"
+ className
+ '\''
+ ", jarPath='"
+ jarPath
+ '\''
+ '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy