View Javadoc

1   /* ------------------------------------
2    * © Kaamelot - 2006
3    * ------------------------------------
4    * Projet  : KaamelotAddOn
5    * Fichier : GroupProviderFactory.java
6    * $Id$ 
7    * $Date$ 
8    * $Log$
9    * 
10   */
11  package com.atlassian.jira.group;
12  
13  import org.ofbiz.core.entity.GenericValue;
14  
15  /**
16   */
17  public interface IGroupProviderFactory {
18  
19  	/**
20  	 * @return
21  	 */
22  	IGroupProvider getGroupProvider(final GenericValue _project);
23  	
24  //	/**
25  //	 * @return
26  //	 */
27  //	IGroupProvider getNewGroupProvider(final GenericValue _project);
28  
29  }