View Javadoc

1   package com.atlassian.jira.export;
2   
3   /**
4    * FQCN : com.atlassian.jira.export.IPathExportProvider
5    * @author Kaamelot
6    * @since 3.x.1.34 
7    * Description : 
8    * Defines interface for Classe having to provide an Export Full File Name
9    */
10  public interface IPathExportProvider {
11  
12  	public String getExportFullFileName();
13  	
14  	public String getSequencedExportFullFileName(final int _sequence);
15  	
16  }