package com.cmos.msgframe.admin.action;

import java.util.List;

import javax.annotation.Resource;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import com.cmos.msgframe.admin.service.IBrokerService;

@Controller
@RequestMapping("/broker")
public class BrokerAction {
	@Resource 
	private IBrokerService brokerService;
	
	@RequestMapping("/proList")
	public List getBrokerPropertyList() {
		return null;
	}

}
