Package com.example.service.client

Source Code of com.example.service.client.SomeClient

package com.example.service.client;

import com.example.MyNumber;
import com.example.service.GodClass;
import com.google.inject.Inject;

public class SomeClient {

  private GodClass godClass;

  @Inject
  public SomeClient(GodClass godClass) {
    this.godClass = godClass;
  }
 
  public void run() {
    MyNumber myNumber = new MyNumber("42");
    while (true) {
      godClass.someBusinessLogic();
      godClass.unrelatedBusinessLogic();
    }
  }
}
TOP

Related Classes of com.example.service.client.SomeClient

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.