All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.basex.query.func.session.SessionSet Maven / Gradle / Ivy

The newest version!
package org.basex.query.func.session;

import org.basex.query.*;
import org.basex.query.value.*;
import org.basex.query.value.item.*;
import org.basex.query.value.seq.*;
import org.basex.util.*;

/**
 * Function implementation.
 *
 * @author BaseX Team 2005-24, BSD License
 * @author Christian Gruen
 */
public final class SessionSet extends SessionFn {
  @Override
  public Item item(final QueryContext qc, final InputInfo ii) throws QueryException {
    final ASession session = session(qc, true);
    final String name = toString(arg(0), qc);
    final Value value = arg(1).value(qc);

    session.set(name, value.materialize(n -> false, info, qc));
    return Empty.VALUE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy