Skip to content

Instantly share code, notes, and snippets.

@abhirockzz
Created September 27, 2015 07:17
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 abhirockzz/63fbdeab5bba9f6d1cc0 to your computer and use it in GitHub Desktop.
Save abhirockzz/63fbdeab5bba9f6d1cc0 to your computer and use it in GitHub Desktop.
Default CDI qualifiers at class level
//Explicit qualifier not specified, hence @Default is assumed
public class CSVParser implements Parser{
//implementation ...
}
//Explicit qualifier specified
@XMLParser
public class XMLParser implements Parser{
//implementation ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment