Custom Keyword Advice Needed

package com.some.package.name

public class Utils{
@Keyword
def Login(){

}
}

I now create a test case and Add → Custom Keyword to my test case. This renders as com.some.package.name.Utils.Login on the Manual tab. How do we simplify this so that all that renders is Login? In other words, is it possible to change the display name for a custom keyword?

Perhaps something along the lines of
@Keyword(DisplayName=‘Login’)