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

com.haoxuer.lbs.qq.v1.builder.ServicesBuilder Maven / Gradle / Ivy

The newest version!
package com.haoxuer.lbs.qq.v1.builder;

import com.haoxuer.lbs.baidu.builder.ServiceEngineBuilder;

public class ServicesBuilder {
  
  private String key;
  
  
  private ServicesBuilder(){
  }
  
  public Services build() {
    Services result = new Services(key);
    return result;
  }
  
  public static ServicesBuilder newBuilder() {
    ServicesBuilder result = new ServicesBuilder();
    return result;
  }
  
  public ServicesBuilder key(String key) {
    this.key = key;
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy