/* * ModeShape (http://www.modeshape.org) * * 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 org.modeshape.jcr.query.model; import org.modeshape.common.annotation.Immutable; import org.modeshape.common.util.CheckArg; import org.modeshape.common.util.HashCode; /** * A constraint requiring that the selected node is reachable by the supplied absolute path */ @Immutable public class SameNode implements Constraint, javax.jcr.query.qom.SameNode { private static final long serialVersionUID = 1L; private final SelectorName selectorName; private final String path; private final int hc; /** * Create a constraint requiring that the node identified by the selector is reachable by the supplied absolute path. * * @param selectorName the name of the selector * @param path the absolute path * @throws IllegalArgumentException if the selector name or path are null */ public SameNode( SelectorName selectorName, String path ) { CheckArg.isNotNull(selectorName, "selectorName"); CheckArg.isNotNull(path, "path"); this.selectorName = selectorName; this.path = path; this.hc = HashCode.compute(this.selectorName, this.path); } /** * Get the name of the selector. * * @return the selector name; never null */ public final SelectorName selectorName() { return selectorName; } @Override public String getSelectorName() { return selectorName().getString(); } @Override public final String getPath() { return path; } @Override public String toString() { return Visitors.readable(this); } @Override public int hashCode() { return hc; } @Override public boolean equals( Object obj ) { if (obj == this) return true; if (obj instanceof SameNode) { SameNode that = (SameNode)obj; if (this.hc != that.hc) return false; if (!this.selectorName.equals(that.selectorName)) return false; if (!this.path.equals(that.path)) return false; return true; } return false; } @Override public void accept( Visitor visitor ) { visitor.visit(this); } }