1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.app.client.config;
18
19 import java.io.FileNotFoundException;
20
21 import org.gwe.utils.security.AccessControl;
22 import org.gwe.utils.security.AccountInfo;
23 import org.gwe.utils.security.KeyStore;
24 import org.gwe.utils.security.Realm;
25 import org.gwe.utils.xstream.AliasTransf;
26 import org.gwe.utils.xstream.XMLConfigFile;
27
28
29
30
31
32 public class KeysXMLConfigFile extends XMLConfigFile<KeyStore> {
33
34 private static AliasTransf<KeyStore> at4Keys = new AliasTransf<KeyStore> (KeyStore.class, "keystore", "accessControls");
35 private static AliasTransf<AccessControl> at4ACs = new AliasTransf<AccessControl> (AccessControl.class, "accessControl").setAttributize(false);
36 private static AliasTransf<AccountInfo> at4Account = new AliasTransf<AccountInfo> (AccountInfo.class, "account");
37 private static AliasTransf<Realm> at4Realms = new AliasTransf<Realm> (Realm.class, "realm");
38
39 public KeysXMLConfigFile(String fileName) throws FileNotFoundException {
40 super(fileName, at4Keys, at4ACs, at4Account, at4Realms);
41 }
42 }