org.jboss.system.tools
Interface DeploymentRepositoryAdapter

All Known Implementing Classes:
ProfileServiceDeploymentRepositoryAdapter

public interface DeploymentRepositoryAdapter

Deployment repository adapter.

Author:
Ales Justin

Method Summary
 void addURL(URL url)
          Add url.
 boolean hasURL(URL url)
          Does this repository contain a url.
 String[] listDeployedURLs()
          List deployed urls as strings.
 void removeURL(URL url)
          Remove url.
 void resume()
          Resume scan.
 void suspend()
          Suspend scan.
 

Method Detail

suspend

void suspend()
Suspend scan.


resume

void resume()
Resume scan.


addURL

void addURL(URL url)
            throws URISyntaxException
Add url.

Parameters:
url - the url
Throws:
URISyntaxException - for any error

removeURL

void removeURL(URL url)
               throws URISyntaxException
Remove url.

Parameters:
url - the url
Throws:
URISyntaxException - for any error

hasURL

boolean hasURL(URL url)
               throws URISyntaxException
Does this repository contain a url.

Parameters:
url - the url
Returns:
true if the url is contained
Throws:
URISyntaxException - for any error

listDeployedURLs

String[] listDeployedURLs()
List deployed urls as strings.

Returns:
the list of deployed urls


Copyright © 2009 JBoss, a division of Red Hat, Inc.. All Rights Reserved.