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

com.anaptecs.jeaf.junit.serviceproviders.MyServiceProvider Maven / Gradle / Ivy

There is a newer version: 1.24.1
Show newest version
/*
 * anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
 *
 * Copyright 2004 - 2019. All rights reserved.
 */
package com.anaptecs.jeaf.junit.serviceproviders;

import com.anaptecs.jeaf.core.api.ServiceProvider;

public interface MyServiceProvider extends ServiceProvider {
  /**
   * @return boolean
   */
  boolean doSomething( );

  /**
   */
  @Deprecated
  void doSomethingDeprecated( );

  /**
   * @param pParam1
   * @param pParam2 
* Deprecated. (since: , removed with: ) * @return {@link String}
* Deprecated. (since: , removed with: ) */ @Deprecated String doSomething( int pParam1, @Deprecated int pParam2 ); }