Package org.apache.slide.projector

Examples of org.apache.slide.projector.Store.dispose()


        String key = ((StringValue)parameter.get(KEY)).toString();
        Store store = context.getStore(StoreHelper.getStoreByName(name));
        if ( store == null ) {
            throw new ProcessException(new ErrorMessage("storeNotAvailable", new String[] {name}));
        }
        store.dispose(key);
        return new Result( StateDescriptor.OK );
    }

    public ParameterDescriptor[] getParameterDescriptors() {
        return parameterDescriptor;
View Full Code Here


    public Result process(Map parameter, Context context) throws Exception {
      String storeName = parameter.get(STORE).toString();
      String key = parameter.get(KEY).toString();
      Store store = context.getStore(StoreHelper.getStoreByName(storeName));
      store.dispose(key);
      return Result.OK;
    }

    public ParameterDescriptor[] getParameterDescriptors() {
        return parameterDescriptors;
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.