package com.vci.server.workflow.server.delegate;
|
|
import com.vci.corba.common.VCIError;
|
import com.vci.server.workflow.common.resouce.EventProperties;
|
|
public class EventConfServerDelegate {
|
public String getStringProperty(String strKey) throws VCIError{
|
return new EventProperties().getStringProperty(strKey);
|
}
|
}
|