1 package de.siemens.icn.hipath.dls.apiv100.chese;
2 
3 import de.siemens.icn.hipath.dls.apiv100.device.Key;
4 
5 public final class CheseKey extends Key
6 {
7 
8     private static final String LEVEL = "0";
9     private static final String MODULE = "0";
10    private static final String KEY_FUNCT = "28";
11    private static final String KEY_NUMB = "2";
12    
13    public CheseKey()
14    {
15        setLevel(LEVEL);
16        setModule(MODULE);
17        setKeyFunct(KEY_FUNCT);
18        setNumber(KEY_NUMB);
19    }
20    
21    
22}
23