/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Nuxeo - initial API and implementation * * $Id$ */ package org.eclipse.ecr.core.schema; import java.io.Serializable; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> */ public class Namespace implements Serializable { public static final Namespace DEFAULT_NS = new Namespace(); private static final long serialVersionUID = -3069469489908062592L; private static final String DEFAULT_PREFIX = ""; private static final String DEFAULT_URI = ""; public final String uri; public final String prefix; public Namespace(String uri, String prefix) { assert uri != null; if (uri.length() == 0 && prefix.length() > 0) { throw new IllegalArgumentException( "prefix cannot be not empty if the uri is empty"); } this.uri = uri; this.prefix = prefix == null ? "" : prefix; } private Namespace() { this(DEFAULT_URI, DEFAULT_PREFIX); } public boolean hasPrefix() { return prefix.length() > 0; } @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (obj instanceof Namespace) { Namespace ns = (Namespace) obj; return ns.uri.equals(uri) && ns.prefix.equals(prefix); } return false; } @Override public int hashCode() { return uri.hashCode(); } @Override public String toString() { return uri + " [" + prefix + ']'; } }