Package org.cafesip.jiplet.console.server

Examples of org.cafesip.jiplet.console.server.ContainerMgmt


     */
    public String[] list() throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            return con.listContexts();
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here


    public void delete(String name) throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            con.deleteContext(name);
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here

    public String[] listJiplets(String context) throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            return con.listJiplets(context);
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here

    public ContextElement getProperty(String context) throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            return con.viewContextProperty(context);
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here

    public JipletElement getJipletProperty(String context, String jiplet)
            throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            return con.viewJipletProperty(context, jiplet);
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here

    public JipletElement[] listJipletProperties(String context)
            throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            return con.listJipletsProperties(context);
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here

    public ContextElement[] listProperties() throws Exception
    {
        try
        {
            ContainerMgmt con = new ContainerMgmt();
            return con.listContextsProperties();
        }
        catch (Exception e)
        {
            throw ExceptionHandler.getException(e, this);
        }
View Full Code Here

     */
    protected void setUp() throws Exception
    {
        Model.init();

        container = new ContainerMgmt();
        cleanup();
    }
View Full Code Here

TOP

Related Classes of org.cafesip.jiplet.console.server.ContainerMgmt

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.