KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > DefaultPublishingDRResolver


1 /*
2  * This file is subject to the license found in LICENCE.TXT in the root directory of the project.
3  *
4  * #SNAPSHOT#
5  */

6 package fr.jayasoft.ivy;
7
8
9 public class DefaultPublishingDRResolver implements PublishingDependencyRevisionResolver {
10     public String JavaDoc resolve(ModuleDescriptor published, String JavaDoc publishedStatus, ModuleRevisionId depMrid, String JavaDoc status) {
11         return depMrid.getRevision();
12     }
13 }
14
Popular Tags