1. I don't know if this is the actual package name that you are using, but 'package' is not allowed in a package name.
2. package.name.*.*(..) will match all methods in all types inside of the package package.name, but it will not match anything in package.name.foo. Instead, you need to do package.name..*.*(..) (notice the extra do).