Statistics
| Revision:

gvsig-projects-pool / org.gvsig.online / trunk / org.gvsig.online / org.gvsig.online.lib / org.gvsig.online.lib.api / src / main / java / org / gvsig / online / lib / api / OnlineProject.java @ 9512

History | View | Annotate | Download (881 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.online.lib.api;
7

    
8
import java.util.function.Predicate;
9
import org.gvsig.fmap.geom.primitive.Envelope;
10
import org.gvsig.json.SupportJson;
11
import org.gvsig.tools.task.SimpleTaskStatus;
12

    
13
/**
14
 *
15
 * @author jjdelcerro
16
 */
17
public interface OnlineProject extends SupportJson {
18

    
19
    String getDescription();
20

    
21
    Envelope getEnvelope();
22

    
23
    int getId();
24

    
25
    String getName();
26

    
27
    String getTitle();
28
    
29
    String getLabel();
30
    
31
    public OnlineSite getSite();
32
    
33
    public Iterable<OnlineLayer> layers();
34
    
35
    public Iterable<OnlineLayer> layers(SimpleTaskStatus status);
36
    
37
    public OnlineLayer getLayer(Predicate<OnlineLayer>filter, SimpleTaskStatus status);
38
    
39
}