package com.artfess.base.security; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import org.springframework.stereotype.Service; @Service public class DefaultMethodAuthService implements MethodAuthService { public List> getMethodAuth(){ ArrayList> result = new ArrayList>(); return result; } }