X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.repo%2Fsrc%2Forg%2Feclipse%2Faether%2Fversion%2FVersionScheme.java;fp=org.argeo.slc.repo%2Fsrc%2Forg%2Feclipse%2Faether%2Fversion%2FVersionScheme.java;h=c19177a229f97eb8b9237edf8ea1b1f8d7120fda;hb=825d60c5348dbe3f5be25b0bccf7bdebfe694219;hp=0000000000000000000000000000000000000000;hpb=5e991fff5cba01858dcc5747a27e637325bc5c8e;p=gpl%2Fargeo-jcr.git diff --git a/org.argeo.slc.repo/src/org/eclipse/aether/version/VersionScheme.java b/org.argeo.slc.repo/src/org/eclipse/aether/version/VersionScheme.java new file mode 100644 index 0000000..c19177a --- /dev/null +++ b/org.argeo.slc.repo/src/org/eclipse/aether/version/VersionScheme.java @@ -0,0 +1,50 @@ +/******************************************************************************* + * Copyright (c) 2010, 2011 Sonatype, Inc. + * 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: + * Sonatype, Inc. - initial API and implementation + *******************************************************************************/ +package org.eclipse.aether.version; + +/** + * A version scheme that handles interpretation of version strings to facilitate their comparison. + */ +public interface VersionScheme +{ + + /** + * Parses the specified version string, for example "1.0". + * + * @param version The version string to parse, must not be {@code null}. + * @return The parsed version, never {@code null}. + * @throws InvalidVersionSpecificationException If the string violates the syntax rules of this scheme. + */ + Version parseVersion( String version ) + throws InvalidVersionSpecificationException; + + /** + * Parses the specified version range specification, for example "[1.0,2.0)". + * + * @param range The range specification to parse, must not be {@code null}. + * @return The parsed version range, never {@code null}. + * @throws InvalidVersionSpecificationException If the range specification violates the syntax rules of this scheme. + */ + VersionRange parseVersionRange( String range ) + throws InvalidVersionSpecificationException; + + /** + * Parses the specified version constraint specification, for example "1.0" or "[1.0,2.0),(2.0,)". + * + * @param constraint The constraint specification to parse, must not be {@code null}. + * @return The parsed version constraint, never {@code null}. + * @throws InvalidVersionSpecificationException If the constraint specification violates the syntax rules of this + * scheme. + */ + VersionConstraint parseVersionConstraint( final String constraint ) + throws InvalidVersionSpecificationException; + +}