You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
common-smartgears/src/main/java/org/gcube/smartgears/configuration/application/GCubeInclude.java

73 lines
1.4 KiB
Java

package org.gcube.smartgears.configuration.application;
import java.util.ArrayList;
import java.util.List;
import org.gcube.common.validator.annotations.NotEmpty;
public class GCubeInclude {
@NotEmpty
private List<String> handlers = new ArrayList<String>();
@NotEmpty
private String path;
public List<String> getHandlers() {
return handlers;
}
public String getPath() {
return path;
}
protected GCubeInclude() {}
public GCubeInclude(String path) {
super();
this.path = path;
}
public GCubeInclude(List<String> handlers, String path) {
super();
this.handlers = handlers;
this.path = path;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((path == null) ? 0 : path.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
GCubeInclude other = (GCubeInclude) obj;
if (handlers == null) {
if (other.handlers != null)
return false;
} else if (!handlers.equals(other.handlers))
return false;
if (path == null) {
if (other.path != null)
return false;
} else if (!path.equals(other.path))
return false;
return true;
}
@Override
public String toString() {
return "Include [handlers=" + handlers + ", path=" + path + "]";
}
}