View Javadoc

1   package fr.in2p3.jsaga.impl.context.attrs;
2   
3   import fr.in2p3.jsaga.impl.context.ContextImpl;
4   
5   /* ***************************************************
6    * *** Centre de Calcul de l'IN2P3 - Lyon (France) ***
7    * ***             http://cc.in2p3.fr/             ***
8    * ***************************************************
9    * File:   DataServiceConfigAttribute
10   * Author: Lionel Schwarz (lionel.schwarz@in2p3.fr)
11   * ***************************************************
12   * Description:                                      */
13  
14  public class DataServiceConfigAttribute extends ServiceConfigAttribute {
15  
16      public String getKey() {
17          return ContextImpl.DATA_SERVICE_ATTRIBUTES;
18      }
19  
20      public String getDescription() {
21          return "array of attributes for data service used with this context";
22      }
23  
24  
25  }