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 handlers = new ArrayList(); @NotEmpty private String path; public List getHandlers() { return handlers; } public String getPath() { return path; } protected GCubeInclude() {} public GCubeInclude(String path) { super(); this.path = path; } public GCubeInclude(List 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 + "]"; } }