aboutsummaryrefslogtreecommitdiff
path: root/subsonic-booter/src/main/java/net/sourceforge/subsonic/booter/deployer/SubsonicDeployerService.java
blob: a0bf087fabbfd1f13a352766cbf977fb5461ebfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package net.sourceforge.subsonic.booter.deployer;

/**
 * RMI interface implemented by the Subsonic deployer and used by the agent.
 *
 * @author Sindre Mehus
 */
public interface SubsonicDeployerService {

    /**
     * Returns information about the Subsonic deployment, such
     * as URL, memory consumption, start time etc.
     *
     * @return Deployment information.
     */
    DeploymentStatus getDeploymentInfo();
}