Examples of store()


Examples of org.openqreg.bean.UsergroupBean.store()

        con = DbHandler.getConnection();
        con.setAutoCommit(false);
        userGroupBean.setUpdatedby(userId);
        userGroupBean.setTsupdated(new Timestamp(System
            .currentTimeMillis()));
        userGroupBean.store(con);

        // userGroup groups
        Collection<GrouprelationBean> col = GrouprelationFinder
            .findByUsergroupid(con, userGroupBean.getId());
        // loop exsisting groupRelations update or remove based on status
View Full Code Here

Examples of org.openstreetmap.josm.io.auth.CredentialsAgent.store()

        try {
            PasswordAuthentication pa = new PasswordAuthentication(
                    tfProxyHttpUser.getText().trim(),
                    tfProxyHttpPassword.getPassword()
            );
            cm.store(RequestorType.PROXY, tfProxyHttpHost.getText(), pa);
        } catch(CredentialsAgentException e) {
            Main.error(e);
        }
    }
}
View Full Code Here

Examples of org.openstreetmap.osmosis.core.util.PropertiesPersister.store()

     
      // Commit downstream changes.
      processComplete();
     
      // Persist the local state.
      localStatePersistor.store(localState.store());
     
    } finally {
      processRelease();
    }
  }
View Full Code Here

Examples of org.openstreetmap.osmosis.replication.common.ReplicationState.store()

     
      // Commit downstream changes.
      processComplete();
     
      // Persist the local state.
      localStatePersistor.store(localState.store());
     
    } finally {
      processRelease();
    }
  }
View Full Code Here

Examples of org.opentides.bean.SortedProperties.store()

    OutputStream out = null;
    try {
      Properties sortedProperties = new SortedProperties(properties);
      File f = new File(filename);
      out = new FileOutputStream(f);
      sortedProperties.store(out, header);
    } catch (Exception e) {
      _log.error(e,e);
    } finally {
      try {
        out.close();
View Full Code Here

Examples of org.pentaho.cdf.storage.StorageEngine.store()

          break;
        case DELETE:
          result = engine.delete( userSession.getName() );
          break;
        case STORE:
          result = engine.store( params.getStringParameter( Parameter.STORAGE_VALUE, "" ), userSession.getName() );
          break;
        default:
          result = JsonUtil.makeJsonErrorResponse( "Unknown Storage operation: " + action, true );
          break;
      }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.modules.misc.configstore.base.ConfigStorage.store()

    try
    {
      final boolean fullStorageEnabled = isFullInputStorageEnabled(reportConfiguration);
      final Configuration dialogContents = grabDialogContents(fullStorageEnabled);
      final ConfigStorage storage = ConfigFactory.getInstance().getUserStorage();
      storage.store(configPath, dialogContents);
    }
    catch (ConfigStoreException cse)
    {
      AbstractExportDialog.logger.debug(messages.getString("AbstractExportDialog.DEBUG_CANT_STORE_DEFAULTS",
          String.valueOf(getClass()))); //$NON-NLS-1$//$NON-NLS-2$
View Full Code Here

Examples of org.pentaho.reporting.tools.configeditor.editor.ConfigEditorPanel.store()

      final Object lastPathElement = path.getLastPathComponent();
      if (lastPathElement instanceof ConfigTreeModuleNode)
      {
        final ConfigTreeModuleNode node = (ConfigTreeModuleNode) lastPathElement;
        final ConfigEditorPanel detailEditorPane = getDetailEditorPane();
        detailEditorPane.store();
        detailEditorPane.editModule(node.getModule(), configuration, node.getAssignedKeys());
      }
    }
  }
View Full Code Here

Examples of org.perl6.nqp.sixmodel.ContainerSpec.store()

        return cs == null || obj instanceof TypeObject ? obj : cs.fetch(tc, obj);
    }
    public static SixModelObject assign(SixModelObject cont, SixModelObject value, ThreadContext tc) {
        ContainerSpec cs = cont.st.ContainerSpec;
        if (cs != null)
            cs.store(tc, cont, decont(value, tc));
        else
            ExceptionHandling.dieInternal(tc, "Cannot assign to an immutable value");
        return cont;
    }
    public static SixModelObject assignunchecked(SixModelObject cont, SixModelObject value, ThreadContext tc) {
View Full Code Here

Examples of org.radargun.stages.tpcc.domain.Customer.store()

         }

         if (c_new_data.length() > 500) c_new_data = c_new_data.substring(0, 500);

         c.setC_data(c_new_data);
         c.store(basicCache);
      } else {
         c.store(basicCache);
      }

      w_name = w.getW_name();
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.