コード例 #1
0
ファイル: RestClient.java プロジェクト: saeta/rest.li
 /**
  * Adds the protocol version of Rest.li used to build the request to the headers for this request
  *
  * @param builder
  * @param protocolVersion
  */
 private void addProtocolVersionHeader(
     RestRequestBuilder builder, ProtocolVersion protocolVersion) {
   builder.setHeader(RestConstants.HEADER_RESTLI_PROTOCOL_VERSION, protocolVersion.toString());
 }