View Javadoc

1   /*
2    * Copyright 2006-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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.kuali.rice.ksb.config.wss4j;
18  
19  import org.apache.ws.security.WSPasswordCallback;
20  import org.kuali.rice.core.api.config.ConfigurationException;
21  import org.kuali.rice.core.api.config.property.Config;
22  import org.kuali.rice.core.api.config.property.ConfigContext;
23  
24  import javax.security.auth.callback.Callback;
25  import javax.security.auth.callback.CallbackHandler;
26  import javax.security.auth.callback.UnsupportedCallbackException;
27  import java.io.IOException;
28  
29  
30  /**
31   * Workflow CryptoPasswordCallbackHandler which retrieves the keystore password
32   * from the workflow Config.
33   * 
34   * @author Kuali Rice Team (rice.collab@kuali.org)
35   */
36  public class CryptoPasswordCallbackHandler implements CallbackHandler {
37  
38      /**
39       * The actual CallBackHandler implementation.
40       */
41      public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
42          for (int i = 0; i < callbacks.length; i++) {
43              if (callbacks[i] instanceof WSPasswordCallback) {
44                  WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
45                  String password = ConfigContext.getCurrentContextConfig().getKeystorePassword();
46                  if (password == null) {
47                  	throw new ConfigurationException("Could not locate the webservice password.  Should be configured as the '" + Config.KEYSTORE_PASSWORD + "' property.");
48                  }
49                  pc.setPassword(password);
50              } else {
51                  throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
52              }
53          }
54      }
55  }