org.apache.jackrabbit.spi.commons.name.IdentifierPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.jackrabbit.spi.commons.name;
import javax.jcr.RepositoryException;
import org.apache.jackrabbit.spi.Name;
import org.apache.jackrabbit.spi.Path;
final class IdentifierPath extends AbstractPath {
/** Serial version UID */
private static final long serialVersionUID = 1602959709588338642L;
private final String identifier;
public IdentifierPath(String identifier) {
assert identifier != null;
this.identifier = identifier;
}
/**
* Returns null
as an identifier element has no name.
*
* @return null
*/
public Name getName() {
return null;
}
public String getIdentifier() {
return identifier;
}
/**
* Returns true
as this is an identifier-based path.
*
* @return true
*/
@Override
public boolean denotesIdentifier() {
return true;
}
/**
* Returns true
as this is an identifier-based path.
*
* @return true
*/
public boolean isIdentifierBased() {
return true;
}
/**
* Returns true
as an identifier-based path with no other
* elements is absolute.
*
* @return true
*/
public boolean isAbsolute() {
return true;
}
/**
* Returns true
as an identifier-based path with no other
* elements is canonical.
*
* @return true
*/
public boolean isCanonical() {
return true;
}
/**
* Returns false
as an identifier-based path is never
* normalized.
*
* @return false
*/
public boolean isNormalized() {
return false;
}
public Path getNormalizedPath() throws RepositoryException {
throw new RepositoryException(
"Cannot normalize the identifier-based path " + this);
}
public Path getCanonicalPath() {
return this;
}
public Path getAncestor(int degree)
throws IllegalArgumentException, RepositoryException {
if (degree < 0) {
throw new IllegalArgumentException(
this + ".getAncestor(" + degree + ")");
} else if (degree > 0) {
throw new RepositoryException(
"Cannot construct ancestor path from an identifier");
} else {
return this;
}
}
public int getAncestorCount() {
return 0;
}
public int getLength() {
return 1;
}
public int getDepth() {
return 0;
}
public Path subPath(int from, int to) throws IllegalArgumentException {
if (from == 0 && to == 1) {
return this;
} else {
throw new IllegalArgumentException(
this + ".subPath(" + from + ", " + to + ")");
}
}
public Element[] getElements() {
return new Element[] { getNameElement() };
}
public String getString() {
return "[" + identifier + "]";
}
//--------------------------------------------------------------< Object >
public final boolean equals(Object that) {
if (this == that) {
return true;
} else if (that instanceof Path) {
Path path = (Path) that;
return path.denotesIdentifier()
&& identifier.equals(path.getIdentifier());
} else {
return false;
}
}
public final int hashCode() {
return identifier.hashCode();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy