OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
74 ilm 1
package org.openconcerto.modules.extensionbuilder.meu.actions;
2
 
3
public class ActionDescriptor {
4
 
5
    private String id;
6
    private String location; // header, popup, both
7
    private String table;
8
    private String componentId;
9
    public static final String LOCATION_HEADER = "header";
10
    public static final String LOCATION_POPUP = "popup";
11
    public static final String LOCATION_HEADER_POPUP = "header,popup";
12
 
13
    public ActionDescriptor(String id) {
14
        this.id = id;
15
    }
16
 
17
    public String getId() {
18
        return id;
19
    }
20
 
21
    public void setId(String id) {
22
        this.id = id;
23
    }
24
 
25
    public String getLocation() {
26
        return location;
27
    }
28
 
29
    public void setLocation(String location) {
30
        this.location = location;
31
    }
32
 
33
    public String getTable() {
34
        return table;
35
    }
36
 
37
    public void setTable(String table) {
38
        this.table = table;
39
    }
40
 
41
    public String getComponentId() {
42
        return componentId;
43
    }
44
 
45
    public void setComponentId(String componentId) {
46
        this.componentId = componentId;
47
    }
48
 
49
}