Package uk.org.ogsadai.resource

Examples of uk.org.ogsadai.resource.ResourceLifetime


    {
        // delete the file
        clear();
       
        // set the termination time to now
        ResourceLifetime resourceLifetime =
            mState.getDataResourceState().getResourceLifetime();
        resourceLifetime.setTerminationTime(Calendar.getInstance());

    }
View Full Code Here


    }

    public void destroy()
    {
        LOG.debug("In destroy()");
        ResourceLifetime resourceLifetime = mConfiguration
                .getRDFDataResourceState().getResourceLifetime();
        resourceLifetime.setTerminationTime(Calendar.getInstance());
    }
View Full Code Here

    return new SimpleRDFConnectionProvider(this, securityContext);
  }

  @Override
  public void destroy() {
    ResourceLifetime resourceLifetime =
            mConfiguration.getRDFDataResourceState().getResourceLifetime();
        resourceLifetime.setTerminationTime(Calendar.getInstance());   
  }
View Full Code Here

    return new SimpleReasoningConnectionProvider(this, securityContext);
  }

  public void destroy() {
    LOG.debug("In destroy()");
    ResourceLifetime resourceLifetime = mConfiguration
        .getReasoningResourceState().getResourceLifetime();
    resourceLifetime.setTerminationTime(Calendar.getInstance());
  }
View Full Code Here

TOP

Related Classes of uk.org.ogsadai.resource.ResourceLifetime

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.