Project

General

Profile

Download (1.34 KB) Statistics
| Branch: | Revision:

git_sitools_idoc / flarecast / workspace / client-user-3.0 / app / model / FormProjectModel.js @ master

1
/*******************************************************************************
2
 * Copyright 2010-2014 CNES - CENTRE NATIONAL d'ETUDES SPATIALES
3
 * 
4
 * This file is part of SITools2.
5
 * 
6
 * SITools2 is free software: you can redistribute it and/or modify it under the
7
 * terms of the GNU General Public License as published by the Free Software
8
 * Foundation, either version 3 of the License, or (at your option) any later
9
 * version.
10
 * 
11
 * SITools2 is distributed in the hope that it will be useful, but WITHOUT ANY
12
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13
 * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14
 * 
15
 * You should have received a copy of the GNU General Public License along with
16
 * SITools2. If not, see <http://www.gnu.org/licenses/>.
17
 ******************************************************************************/
18
/*global Ext, sitools, window */
19

    
20
Ext.define('sitools.user.model.FormProjectModel', {
21
    extend : 'sitools.user.model.FormModel',
22

    
23
    fields : [{
24
        name : 'dictionary'
25
    }, {
26
        name : 'collection'
27
    }, {
28
        name : 'properties'
29
    }, {
30
        name : 'urlServicePropertiesSearch',
31
        type : 'string'
32
    }, {
33
        name : 'urlServiceDatasetSearch',
34
        type : 'string'
35
    }, {
36
        name : 'nbDatasetsMax',
37
        type : 'int'
38
    } ]
39
});