OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 149 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 149 Rev 156
Line 11... Line 11...
11
 * When distributing the software, include this License Header Notice in each file.
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
12
 */
13
 
13
 
14
 package org.openconcerto.erp.core.edm;
14
 package org.openconcerto.erp.core.edm;
15
 
15
 
16
import java.util.ArrayList;
-
 
17
import java.util.List;
-
 
18
 
-
 
19
import org.openconcerto.erp.core.common.element.ComptaSQLConfElement;
16
import org.openconcerto.erp.core.common.element.ComptaSQLConfElement;
20
import org.openconcerto.sql.element.BaseSQLComponent;
17
import org.openconcerto.sql.element.BaseSQLComponent;
21
import org.openconcerto.sql.element.SQLComponent;
18
import org.openconcerto.sql.element.SQLComponent;
22
 
19
 
-
 
20
import java.util.ArrayList;
-
 
21
import java.util.List;
-
 
22
 
23
public class AttachmentSQLElement extends ComptaSQLConfElement {
23
public class AttachmentSQLElement extends ComptaSQLConfElement {
24
 
24
 
25
    public static final String DIRECTORY_PREFS = "EDMdirectory";
25
    public static final String DIRECTORY_PREFS = "EDMdirectory";
26
 
26
 
27
    public AttachmentSQLElement() {
27
    public AttachmentSQLElement() {
Line 62... Line 62...
62
        };
62
        };
63
    }
63
    }
64
 
64
 
65
    @Override
65
    @Override
66
    protected String createCode() {
66
    protected String createCode() {
67
        return createCodeFromPackage() + ".attachment";
67
        return "edm.attachment";
68
    }
68
    }
69
}
69
}