source: trunk/src/org/expeditee/auth/tags/GenerationTag.java@ 1482

Last change on this file since 1482 was 1243, checked in by bln4, 5 years ago

Alterations to how mail works to work better in a cloud environment.
General code tidying and updating to work with larger changes happening to Expeditee.

File size: 556 bytes
Line 
1package org.expeditee.auth.tags;
2
3public interface GenerationTag {
4 public String DesiredWidth300 = "W300";
5 public String UsernameTextBox = "txtUsername";
6
7 public interface Settings {
8 public String UsernameLabeledProfileName = "lblUsernameLabeledProfile";
9 public String UsernameLabeledUserName = "lblUsernameLabeledUser";
10 public String Email = "lblEmail";
11 }
12
13 public interface Keys {
14 public String PersonalKey = "lblPersonalKey";
15 public String PublicKey = "lblPublicKey";
16 public String PrivateKey = "lblPrivateKey";
17 }
18}
Note: See TracBrowser for help on using the repository browser.