package com.vci.ubcs.code.bo;
|
|
import org.omg.CORBA.portable.IDLEntity;
|
|
public class AttributeValue implements IDLEntity {
|
public String attrName = "";
|
public String attrVal = "";
|
|
public AttributeValue() {
|
}
|
|
public AttributeValue(String attrName, String attrVal) {
|
this.attrName = attrName;
|
this.attrVal = attrVal;
|
}
|
}
|