HttpBuilder.java 529 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * *************************************************
  3. * Copyright (c) 2018 QMTH. All Rights Reserved.
  4. * Created by Deason on 2018-07-16 16:38:13.
  5. * *************************************************
  6. */
  7. package cn.com.qmth.examcloud.app.utils;
  8. import okhttp3.OkHttpClient;
  9. /**
  10. * HttpClient 单例对象
  11. */
  12. public enum HttpBuilder {
  13. client;
  14. private OkHttpClient instance;
  15. HttpBuilder() {
  16. instance = new OkHttpClient();
  17. }
  18. public OkHttpClient getInstance() {
  19. return instance;
  20. }
  21. }