View Javadoc
1   package org.apache.maven.shared.release.scm;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  /**
23   * Translate the SCM information after tagging/reverting to trunk.
24   *
25   * @author <a href="mailto:brett@apache.org">Brett Porter</a>
26   */
27  // TODO move this API into SCM?
28  public interface ScmTranslator
29  {
30      /**
31       * Take an URL and find the correct replacement URL for a given branch.
32       *
33       * @param url        the source URL
34       * @param branchName the branch name
35       * @param branchBase the branch base for providers that support it
36       * @return the replacement URL
37       */
38      String translateBranchUrl( String url, String branchName, String branchBase );
39  
40      /**
41       * Take an URL and find the correct replacement URL for a given tag.
42       *
43       * @param url     the source URL
44       * @param tag     the tag
45       * @param tagBase the tag base for providers that support it
46       * @return the replacement URL
47       */
48      String translateTagUrl( String url, String tag, String tagBase );
49  
50      /**
51       * Determine what tag should be added to the POM given the original tag and the new one.
52       *
53       * @param tag the new tag
54       * @return the tag to use, or <code>null</code> if the provider does not use tags
55       */
56      String resolveTag( String tag );
57  
58      /**
59       * Translates an ScmFile path to a path relative to the working directory.
60       *
61       * @param path the ScmFile path
62       * @return the relative path with OS specific File separator
63       * @since 2.3.1
64       */
65      String toRelativePath( String path );
66  }