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

📄 variabletype.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 java.util.HashMap;
import java.util.Map;

import javax.xml.namespace.QName;

import org.apache.commons.lang.builder.ToStringBuilder;
import org.w3c.dom.Node;

import org.jbpm.bpel.graph.exe.BpelFaultException;
import org.jbpm.bpel.wsdl.PropertyAlias;
import org.jbpm.bpel.xml.BpelConstants;
import org.jbpm.bpel.xml.util.XmlUtil;
import org.jbpm.util.EqualsUtil;

/**
 * Common base for metadata related to a kind of variable declaration.
 * @author Alejandro Gu韟ar
 * @version $Revision: 1.5 $ $Date: 2007/01/22 00:24:55 $
 */
public abstract class VariableType implements Serializable {

  long id;
  private Map propertyAliases;

  protected VariableType() {
  }

  public abstract QName getName();

  public Map getPropertyAliases() {
    return propertyAliases;
  }

  public void setPropertyAliases(Map propertyAliases) {
    this.propertyAliases = propertyAliases;
  }

  public void addPropertyAlias(PropertyAlias alias) {
    if (propertyAliases == null) {
      propertyAliases = new HashMap();
    }
    propertyAliases.put(alias.getProperty().getQName(), alias);
  }

  public PropertyAlias getPropertyAlias(QName propertyName) {
    return propertyAliases != null ? (PropertyAlias) propertyAliases.get(propertyName)
        : null;
  }

  public abstract Object createValue(VariableDefinition definition);

  public abstract boolean isInitialized(Object variableValue);

  public abstract void setValue(Object currentValue, Object newValue);

  public Object getPropertyValue(QName propertyName, Object variableValue) {
    PropertyAlias alias = getPropertyAlias(propertyName);
    if (alias == null) {
      throw new BpelFaultException(BpelConstants.FAULT_SELECTION_FAILURE);
    }
    Object result = evaluateProperty(alias, variableValue);
    return result instanceof Node ? XmlUtil.getStringValue((Node) result)
        : result;
  }

  public void setPropertyValue(QName propertyName, Object variableValue,
      Object propertyValue) {
    assignProperty(getPropertyAlias(propertyName), variableValue, propertyValue);
  }

  public boolean isMessage() {
    return false;
  }

  public boolean isElement() {
    return false;
  }

  public boolean equals(Object obj) {
    return EqualsUtil.equals(this, obj);
  }

  protected abstract Object evaluateProperty(PropertyAlias propertyAlias,
      Object variableValue);

  protected abstract void assignProperty(PropertyAlias propertyAlias,
      Object variableValue, Object propertyValue);

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

⌨️ 快捷键说明

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