Package org.jboss.hal.core.finder
Class FinderPathFactory
- java.lang.Object
-
- org.jboss.hal.core.finder.FinderPathFactory
-
public class FinderPathFactory extends Object
Factory to build common finder path instances for configuration and runtime presenters.
-
-
Constructor Summary
Constructors Constructor Description FinderPathFactory(Environment environment, StatementContext statementContext, Finder finder, Subsystems subsystems, Resources resources)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FinderPathconfigurationSubsystemPath(String subsystem)Create a finder path for the specified subsystem.FinderPathcontent(String content)FinderPathdeployment(String deployment)FinderPathruntimeHostPath()Creates a finder path for the selected host.FinderPathruntimeHostPath(String host)Creates a finder path for the specified host.FinderPathruntimeServerGroupPath()Creates a finder path for the selected server group.FinderPathruntimeServerGroupPath(String serverGroup)Creates a finder path for the specified server group.FinderPathruntimeServerPath()Creates a finder path for the selected server.FinderPathruntimeServerPath(String host, String server)Creates a finder path for the specified host and server.
-
-
-
Constructor Detail
-
FinderPathFactory
@Inject public FinderPathFactory(Environment environment, StatementContext statementContext, Finder finder, Subsystems subsystems, Resources resources)
-
-
Method Detail
-
configurationSubsystemPath
public FinderPath configurationSubsystemPath(String subsystem)
Create a finder path for the specified subsystem. Includes the selected profile when running in domain mode.
-
content
public FinderPath content(String content)
-
deployment
public FinderPath deployment(String deployment)
-
runtimeHostPath
public FinderPath runtimeHostPath()
Creates a finder path for the selected host.
-
runtimeHostPath
public FinderPath runtimeHostPath(String host)
Creates a finder path for the specified host.
-
runtimeServerGroupPath
public FinderPath runtimeServerGroupPath()
Creates a finder path for the selected server group.
-
runtimeServerGroupPath
public FinderPath runtimeServerGroupPath(String serverGroup)
Creates a finder path for the specified server group.
-
runtimeServerPath
public FinderPath runtimeServerPath()
Creates a finder path for the selected server. Adds the selected host / server group when running domain mode.
-
runtimeServerPath
public FinderPath runtimeServerPath(String host, String server)
Creates a finder path for the specified host and server.
-
-