Package org.astrogrid.samp.web
Interface AuthResourceBundle.Content
-
- Enclosing class:
- AuthResourceBundle
public static interface AuthResourceBundle.Content
Defines the keys and value types required for a bundle of this class. See the English language implementation inAuthResourceBundle_en
for example text.All methods have no arguments and return a String. The methods with names that end "
Lines
" should return text which contains line breaks (\n
characters). Each such line will be displayed as it stands in the GUI, so it shouldn't be too long.The method names define the keys which can be used if a property resource file is used to supply the content.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
adviceLines()
Returns lines with advice on whether you should accept or decline.java.lang.String
appIntroductionLines()
Returns lines introducing the registration request.java.lang.String
nameWord()
Returns the word meaning "Name" (initial capitalised).java.lang.String
noWord()
Returns the word meaning "No" (initial capitalised).java.lang.String
originWord()
Returns the word meaning "Origin" (initial capitalised).java.lang.String
privilegeWarningLines()
Returns lines suitable explaining the privileges that a registered client will have.java.lang.String
questionLine()
Returns a line asking whether to authorize (yes/no).java.lang.String
undeclaredWord()
Returns the word meaning "undeclared" (not capitalised).java.lang.String
windowTitle()
Returns the title for the confirmation window.java.lang.String
yesWord()
Returns the word meaning "Yes" (initial capitalised).
-
-
-
Method Detail
-
windowTitle
java.lang.String windowTitle()
Returns the title for the confirmation window.
-
appIntroductionLines
java.lang.String appIntroductionLines()
Returns lines introducing the registration request.
-
nameWord
java.lang.String nameWord()
Returns the word meaning "Name" (initial capitalised).
-
originWord
java.lang.String originWord()
Returns the word meaning "Origin" (initial capitalised).
-
undeclaredWord
java.lang.String undeclaredWord()
Returns the word meaning "undeclared" (not capitalised).
-
privilegeWarningLines
java.lang.String privilegeWarningLines()
Returns lines suitable explaining the privileges that a registered client will have.
-
adviceLines
java.lang.String adviceLines()
Returns lines with advice on whether you should accept or decline.
-
questionLine
java.lang.String questionLine()
Returns a line asking whether to authorize (yes/no).
-
yesWord
java.lang.String yesWord()
Returns the word meaning "Yes" (initial capitalised).
-
noWord
java.lang.String noWord()
Returns the word meaning "No" (initial capitalised).
-
-