aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/controller/IRuntimeMBean.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/controller/IRuntimeMBean.java')
-rw-r--r--org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/controller/IRuntimeMBean.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/controller/IRuntimeMBean.java b/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/controller/IRuntimeMBean.java
deleted file mode 100644
index 885cb8f4..00000000
--- a/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/controller/IRuntimeMBean.java
+++ /dev/null
@@ -1,59 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2009, 2013 Mountainminds GmbH & Co. KG and Contributors
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Evgeny Mandrikov - initial API and implementation
- *
- *******************************************************************************/
-package org.jacoco.agent.rt.internal.controller;
-
-import java.io.IOException;
-
-/**
- * MBean interface for remote commands to a coverage runtime.
- */
-public interface IRuntimeMBean {
-
- /**
- * Returns version of JaCoCo.
- *
- * @return version of JaCoCo
- */
- String getVersion();
-
- /**
- * Returns current a session identifier.
- *
- * @return current session identifier
- */
- String getSessionId();
-
- /**
- * Sets a session identifier.
- *
- * @param id
- * new session identifier
- */
- void setSessionId(String id);
-
- /**
- * Returns current execution data.
- *
- * @param reset
- * if <code>true</code> the current coverage information is also
- * cleared
- * @return dump of current execution data
- * @throws IOException
- */
- byte[] dump(boolean reset) throws IOException;
-
- /**
- * Resets all coverage information.
- */
- void reset();
-
-}