Clover Coverage Report - Implementation 2.0.0-SNAPSHOT
Coverage timestamp: Wed Dec 31 1969 19:00:00 EST
../../../../../../img/srcFileCovDistChart0.png 0% of files have more coverage
8   55   4   8
6   25   0.5   1
1     4  
1    
 
  CryptoPasswordCallbackHandler       Line # 36 8 0% 4 15 0% 0.0
 
No Tests
 
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  0 toggle public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
42  0 for (int i = 0; i < callbacks.length; i++) {
43  0 if (callbacks[i] instanceof WSPasswordCallback) {
44  0 WSPasswordCallback pc = (WSPasswordCallback) callbacks[i];
45  0 String password = ConfigContext.getCurrentContextConfig().getKeystorePassword();
46  0 if (password == null) {
47  0 throw new ConfigurationException("Could not locate the webservice password. Should be configured as the '" + Config.KEYSTORE_PASSWORD + "' property.");
48    }
49  0 pc.setPassword(password);
50    } else {
51  0 throw new UnsupportedCallbackException(callbacks[i], "Unrecognized Callback");
52    }
53    }
54    }
55    }