View Javadoc

1   /*
2    * Copyright 2007-2008 the original author or authors.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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   * @author Marco Ruiz
30   * @since Jan 15, 2009
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  }