blob: 62dcc447872c716f3ded6fd6eb5c09025a9a67ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008-2010 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.m2e.core.internal.project.registry;
import java.io.Serializable;
/**
* Capability
*
* @author igor
*/
public abstract class Capability implements Serializable {
private static final long serialVersionUID = 6057170997402911788L;
private final VersionlessKey versionlessKey;
public Capability(String namespace, String id) {
if(namespace == null || id == null) {
throw new NullPointerException();
}
this.versionlessKey = new VersionlessKey(namespace, id);
}
public VersionlessKey getVersionlessKey() {
return versionlessKey;
}
}