
jp.go.nict.langrid.commons.ws.RpcServiceContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jp.go.nict.langrid.commons Show documentation
Show all versions of jp.go.nict.langrid.commons Show documentation
Common and utility library for the Service Grid Server Software and java web services.
The newest version!
package jp.go.nict.langrid.commons.ws;
import java.util.Arrays;
import jp.go.nict.langrid.commons.rpc.RpcHeader;
public class RpcServiceContext extends ServiceContextWrapper{
public RpcServiceContext(ServiceContext original, RpcHeader[] headers){
super(original);
this.headers = headers;
}
@Override
public Iterable getRequestRpcHeaders() {
return Arrays.asList(headers);
}
private RpcHeader[] headers;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy