1 package com.trendmicro.grid.acl.client; 2 3 import net.sf.tinyjee.ws.client.ClientServiceContext; 4 import org.springframework.stereotype.Component; 5 6 /** 7 * Subclasses the client service context to add configuration file 8 * support and satisfy spring dependencies. 9 * 10 * @author Juergen_Kellerer, 2010-05-16 11 * @version 1.0 12 */ 13 @Component 14 public class SharedClientServiceContext extends ClientServiceContext { 15 { 16 // TODO: Get this from the settings... 17 setCompressRequests(false); 18 setCompressResponses(false); 19 } 20 }