⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 variabledefinition.java

📁 jbpm-bpel-1.1.Beta3 JBoss jBPM Starters Kit  是一个综合包
💻 JAVA
字号:
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2005, JBoss Inc., and individual contributors as indicated
 * by the @authors tag.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the JBPM BPEL PUBLIC LICENSE AGREEMENT as
 * published by JBoss Inc.; either version 1.0 of the License, or
 * (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */
package org.jbpm.bpel.variable.def;

import java.io.Serializable;

import javax.xml.namespace.QName;

import org.apache.commons.lang.builder.ToStringBuilder;

import org.jbpm.bpel.graph.exe.BpelFaultException;
import org.jbpm.bpel.xml.BpelConstants;
import org.jbpm.context.exe.ContextInstance;
import org.jbpm.graph.exe.Token;

/**
 * Variables hold messages that are exchanged, as well as intermediate data used
 * in business logic and in composing messages sent to partners.
 * @author Alejandro Gu韟ar
 * @version $Revision: 1.5 $ $Date: 2007/01/22 00:24:55 $
 */
public class VariableDefinition implements Serializable {

  long id;
  private String name;
  private VariableType type;

  private static final long serialVersionUID = 1L;

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public VariableType getType() {
    return type;
  }

  public void setType(VariableType type) {
    this.type = type;
  }

  /**
   * Creates an instance of this variable in the scope of the given token.
   * @param token the scope token
   */
  public void createInstance(Token token) {
    ContextInstance contextInstance = token.getProcessInstance()
        .getContextInstance();
    contextInstance.createVariable(name, type.createValue(this), token);
  }

  /**
   * Creates an instance of this variable in the scope of the given token.
   * @param token the scope token
   * @param value the initial value
   */
  public void createInstance(Token token, Object value) {
    ContextInstance contextInstance = token.getProcessInstance()
        .getContextInstance();
    contextInstance.createVariable(name, value, token);
  }

  /**
   * Gets the value of this variable in the scope of the given token.
   * @param token the scope token
   * @return the variable value
   */
  public Object getValue(Token token) {
    Object value = getValueForAssign(token);
    if (!type.isInitialized(value)) {
      throw new BpelFaultException(BpelConstants.FAULT_UNINITIALIZED_VARIABLE);
    }
    return value;
  }

  public Object getValueForAssign(Token token) {
    ContextInstance context = token.getProcessInstance().getContextInstance();
    return context.getVariable(name, token);
  }

  /**
   * Sets the value of this variable in the scope of the given token.
   * @param token the scope token
   * @param newValue the new value
   */
  public void setValue(Token token, Object newValue) {
    Object currentValue = getValueForAssign(token);
    type.setValue(currentValue, newValue);
  }

  public Object getPropertyValue(QName propertyName, Token token) {
    return type.getPropertyValue(propertyName, getValue(token));
  }

  public void setPropertyValue(QName propertyName, Token token,
      Object propertyValue) {
    type.setPropertyValue(propertyName, getValue(token), propertyValue);
  }

  public String toString() {
    return new ToStringBuilder(this).append("name", name)
        .append("type", type)
        .toString();
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -