All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.go.nict.langrid.commons.ws.RpcServiceContext Maven / Gradle / Ivy

Go to download

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