~kirkland/eucalyptus/label-metadata

« back to all changes in this revision

Viewing changes to clc/modules/wsstack/src/main/java/com/eucalyptus/ws/client/pipeline/ClusterClientPipeline.java

  • Committer: decker
  • Date: 2009-08-07 21:01:26 UTC
  • Revision ID: decker@internet-hate-machine-20090807210126-ub8io9sbxn6diwmw
fixes to the build and soap auth

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package com.eucalyptus.ws.client.pipeline;
2
2
 
 
3
import java.security.GeneralSecurityException;
 
4
 
3
5
import com.eucalyptus.ws.handlers.NioResponseHandler;
4
6
import com.eucalyptus.ws.handlers.wssecurity.ClusterWsSecHandler;
5
7
 
6
8
public class ClusterClientPipeline extends NioClientPipeline {
7
 
  public ClusterClientPipeline( final NioResponseHandler handler ) {
 
9
  public ClusterClientPipeline( final NioResponseHandler handler ) throws GeneralSecurityException {
8
10
    super( handler, "cc_eucalyptus_ucsb_edu", new ClusterWsSecHandler( ) );
9
11
  }
10
12
}