Examples of deleteContext()


Examples of org.apache.cocoon.webapps.session.ContextManager.deleteContext()

                    contextManager = (ContextManager)this.manager.lookup(ContextManager.ROLE);

                    Iterator i = applicationContexts.iterator();
                    while ( i.hasNext() ) {
                        final String current = (String)i.next();
                        contextManager.deleteContext( current );
                    }
                } catch (ServiceException ce) {
                    throw new ProcessingException("Unable to create session context.", ce);
                } finally {
                    this.manager.release( (Component)contextManager);
View Full Code Here

Examples of org.cafesip.jiplet.console.server.ContainerMgmt.deleteContext()

    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

Examples of org.fenixedu.academic.domain.degreeStructure.DegreeModule.deleteContext()

        }
        final Context context = FenixFramework.getDomainObject(contextID);
        if (context == null) {
            throw new FenixServiceException("error.noCourseGroup");
        }
        degreeModule.deleteContext(context);
    }
}
View Full Code Here

Examples of org.openbp.server.context.TokenContextService.deleteContext()

    Map<String, Object> outputParam = new HashMap<String, Object>();
    getProcessFacade().retrieveOutputParameters(token, outputParam);

    // Since we cleared the 'delete process after completion' flag, we need to delete the process manually.
    TokenContextService tcs = processServer.getTokenContextService();
    tcs.deleteContext(token);
   
    return (String) outputParam.get("ErrMsg");
  }

  protected ProcessFacade getProcessFacade()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.