Package ch.fusun.baron.espionage.impl

Source Code of ch.fusun.baron.espionage.impl.EspionageServiceImpl

package ch.fusun.baron.espionage.impl;

import ch.fusun.baron.data.AbstractDataProvider;
import ch.fusun.baron.data.DataUpdate;
import ch.fusun.baron.espionage.api.EspionageService;
import ch.fusun.baron.espionage.api.EspionageUpdate;

/**
* Implementation of the {@link EspionageService}
*/
public class EspionageServiceImpl extends AbstractDataProvider implements
    EspionageService {

  /**
   * Kryo
   */
  public EspionageServiceImpl() {
  }

  @Override
  public DataUpdate createFullUpdate() {
    return new EspionageUpdate();
  }

  @Override
  public void increaseAntiEspionage() {
    throw new RuntimeException("increaseAntiEspionage not implemented!"); //$NON-NLS-1$
  }

}
TOP

Related Classes of ch.fusun.baron.espionage.impl.EspionageServiceImpl

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.