Package org.glassfish.api.admin

Examples of org.glassfish.api.admin.AdminCommandContext


        }
    }

    public AdminCommandContext loadAdminCommandContext(File contextFile, Outbound outbound) throws IOException, ClassNotFoundException {
        ObjectInputStream ois = new ObjectInputStream(new FileInputStream(contextFile));
        AdminCommandContext context = (AdminCommandContext) ois.readObject();
        ois.close();
        File outboundFile = new File(contextFile.getAbsolutePath() + ".outbound");
        loadOutbound(outbound, outboundFile);
        context.setOutboundPayload(outbound);
        File inboundFile = new File(contextFile.getAbsolutePath() + ".inbound");
        Inbound inbound = loadInbound(inboundFile);
        context.setInboundPayload(inbound);
        return context;
    }
View Full Code Here


    public void restartDomain()
    {
        final ModulesRegistry registry = InjectedValues.getInstance().getModulesRegistry();

        final AdminCommandContext ctx = new AdminCommandContext(ImplUtil.getLogger(), new PlainTextActionReporter());
        final AdminCommand cmd = new RestartDomainCommand(registry);
        cmd.execute(ctx);
    }
View Full Code Here

    public void restartDomain()
    {
        final ModulesRegistry registry = InjectedValues.getInstance().getModulesRegistry();

        final AdminCommandContext ctx = new AdminCommandContextImpl(AMXLoggerInfo.getLogger(), new PlainTextActionReporter());
        final AdminCommand cmd = new RestartDomainCommand(registry);
        cmd.execute(ctx);
    }
View Full Code Here

    public void restartDomain()
    {
        final ModulesRegistry registry = InjectedValues.getInstance().getModulesRegistry();

        final AdminCommandContext ctx = new AdminCommandContextImpl(ImplUtil.getLogger(), new PlainTextActionReporter());
        final AdminCommand cmd = new RestartDomainCommand(registry);
        cmd.execute(ctx);
    }
View Full Code Here

TOP

Related Classes of org.glassfish.api.admin.AdminCommandContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.