View Javadoc

1   package org.cateproject.view.mock;
2   
3   import java.util.UUID;
4   
5   import org.cateproject.service.enumeration.NamedAreaLevels;
6   import org.springframework.stereotype.Component;
7   
8   import eu.etaxonomy.cdm.model.location.NamedAreaLevel;
9   
10  @Component("namedAreaLevels")
11  public class MockNamedAreaLevels implements NamedAreaLevels {
12  
13  	public NamedAreaLevel CONTINENT() {
14  		// TODO Auto-generated method stub
15  		return null;
16  	}
17  
18  	public NamedAreaLevel COUNTRY() {
19  		// TODO Auto-generated method stub
20  		return null;
21  	}
22  
23  	public NamedAreaLevel REGION() {
24  		// TODO Auto-generated method stub
25  		return null;
26  	}
27  
28  	public NamedAreaLevel find(UUID levelUUID) {
29  		// TODO Auto-generated method stub
30  		return null;
31  	}
32  
33  }