package com.vci.server;
|
|
import com.vci.server.volume.VolumeServiceImpl;
|
import com.vci.server.volume.uitls.VolumeProperties;
|
|
|
public class VolumeServiceMain extends ServiceManager {
|
|
public static void main(String[] args) {
|
// TODO Auto-generated method stub
|
System.out.println("");
|
System.out.println("\t***************************************************************");
|
System.out.println("\t* VCI-Platform Volumn Service V2024 www.vci-tech.com *");
|
System.out.println("\t* (C)Beijing Hongbo Yuanda Sciense and Technology Co. , Ltd. *");
|
System.out.println("\t***************************************************************");
|
System.out.println("");
|
|
System.setProperty("user.timezone", "GMT+8");
|
|
VolumeServiceMain server = new VolumeServiceMain();
|
|
String vsName = VolumeProperties.VolumeServiceName(0);
|
|
//server.bindService(vsName, new VolumeServiceImpl() );
|
}
|
|
}
|