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

io.ebean.service.SpiProfileLocationFactory Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.service;

import io.ebean.ProfileLocation;

/**
 * Factory for creating profile locations.
 */
public interface SpiProfileLocationFactory extends BootstrapService {

  /**
   * Create a profile location.
   */
  ProfileLocation create();

  /**
   * Create a profile location with line numbering.
   */
  ProfileLocation createWithLine();

  /**
   * Create with a given label - used only with {@code @Transaction}.
   *
   * @param label the label for the transaction
   */
  ProfileLocation create(String label);

  /**
   * Create a known location.
   */
  ProfileLocation createAt(String location);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy