// This code is taken from WSO2 Carbon and is licensed by WSO2, Inc. // under the Apache License version 2.0 http://www.apache.org/licenses/LICENSE-2.0.html package org.wso2.carbon.bpel.ui.bpel2svg; public class BPELAttributeValuePair { private String attribute = null; private String value = null; public BPELAttributeValuePair(String attribute, String value) { this.attribute = attribute; this.value = value; } public String getAttribute() { return attribute; } public String getValue() { return value; } }