Package org.camunda.bpm.engine.impl.variable.serializer

Source Code of org.camunda.bpm.engine.impl.variable.serializer.ByteArrayValueSerializer

/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.camunda.bpm.engine.impl.variable.serializer;

import org.camunda.bpm.engine.impl.core.variable.value.UntypedValueImpl;
import org.camunda.bpm.engine.impl.persistence.entity.ByteArrayEntity;
import org.camunda.bpm.engine.variable.Variables;
import org.camunda.bpm.engine.variable.type.ValueType;
import org.camunda.bpm.engine.variable.value.BytesValue;

/**
* @author Tom Baeyens
* @author Daniel Meyer
*/
public class ByteArrayValueSerializer extends PrimitiveValueSerializer<BytesValue> {

  public ByteArrayValueSerializer() {
    super(ValueType.BYTES);
  }

  public BytesValue convertToTypedValue(UntypedValueImpl untypedValue) {
    return Variables.byteArrayValue( (byte[]) untypedValue.getValue() );
  }

  public BytesValue readValue(ValueFields valueFields) {
    return Variables.byteArrayValue( getBytes(valueFields) );
  }

  public void writeValue(BytesValue variableValue, ValueFields valueFields) {
    setBytes(valueFields, variableValue.getValue());
  }

  public static byte[] getBytes(ValueFields valueFields) {
    byte[] byteArray = null;
    if(valueFields.getByteArrayValue() != null) {
      byteArray = valueFields.getByteArrayValue().getBytes();
    }
    return byteArray;
  }

  public static void setBytes(ValueFields valueFields, byte[] bytes) {
    ByteArrayEntity byteArray = valueFields.getByteArrayValue();

    if (byteArray==null) {
      valueFields.setByteArrayValue(bytes);
    }
    else {
      byteArray.setBytes(bytes);
    }
  }

}
TOP

Related Classes of org.camunda.bpm.engine.impl.variable.serializer.ByteArrayValueSerializer

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.