31 lines
748 B
Plaintext
31 lines
748 B
Plaintext
|
|
package common.dataService;
|
|||
|
|
|
|||
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|||
|
|
import com.sgcc.uap.mdd.runtime.data.AbstractDataServiceController;
|
|||
|
|
import org.osgi.framework.Bundle;
|
|||
|
|
import org.springframework.stereotype.Controller;
|
|||
|
|
import org.osgi.framework.FrameworkUtil;
|
|||
|
|
/**
|
|||
|
|
* <b>概述</b>:<br>
|
|||
|
|
* TODO
|
|||
|
|
* <p>
|
|||
|
|
* <b>功能</b>:<br>
|
|||
|
|
* TODO
|
|||
|
|
*
|
|||
|
|
* @author sunyifei
|
|||
|
|
*/
|
|||
|
|
@Controller
|
|||
|
|
@RequestMapping("/data")
|
|||
|
|
public class DataServiceController extends AbstractDataServiceController {
|
|||
|
|
/**
|
|||
|
|
* @getBundle:获取Bundle
|
|||
|
|
* @return Bundle
|
|||
|
|
* @date 2019-09-15 20:35:50
|
|||
|
|
* @author sunyifei
|
|||
|
|
*/
|
|||
|
|
public Bundle getBundle() {
|
|||
|
|
Bundle bundle = FrameworkUtil.getBundle(DataServiceController.class);
|
|||
|
|
return bundle;
|
|||
|
|
}
|
|||
|
|
}
|