Skip to content

Instantly share code, notes, and snippets.

Created July 9, 2015 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9d425892dcd16e98568d to your computer and use it in GitHub Desktop.
Save anonymous/9d425892dcd16e98568d to your computer and use it in GitHub Desktop.
package de.openknowledge.blog.property
import javax.inject.Inject;
import de.openknowledge.cdi.common.property.Property
public class Application {
@Inject @Property(name = "application.name")
private String name
public String getName() {
return name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment