Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Created January 3, 2018 14:39
Show Gist options
  • Save jwalgemoed/d29262a65a559fc930dc4885ffb8f5da to your computer and use it in GitHub Desktop.
Save jwalgemoed/d29262a65a559fc930dc4885ffb8f5da to your computer and use it in GitHub Desktop.
public final class Environment {
@NotNull
private final String applicationName;
@NotNull
public final String getApplicationName() {
return this.applicationName;
}
public Environment() {
String var1 = "Initializing property...";
System.out.println(var1);
this.applicationName = "Application Name";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment