# HG changeset patch # User František Kučera # Date 1376408902 -7200 # Node ID 6dde411ca82c112511fa0e4486789b29dd24e20e # Parent 00aecef99f14e0afc26b9ed8ef47a9581ca58a80 data: API, SPI diff -r 00aecef99f14 -r 6dde411ca82c data/dictionary.xml --- a/data/dictionary.xml Tue Aug 13 17:11:12 2013 +0200 +++ b/data/dictionary.xml Tue Aug 13 17:48:22 2013 +0200 @@ -1643,13 +1643,27 @@ - + + + specifies interaction between software components; + adds an abstraction layer which divides calling code and called code + and enables multiple implementations of such API (or SPI) like multiple databases (database drivers), file systems, remote services etc. + examples of API: POSIX, OpenGL, JDBC, JMS or JMX + + computer - + + + a kind of API to be implemented by third party; + can be installed as plugin/addon/extension and used by the application over standard interface; + examples of SPI: JDBC, JNDI or JAXP + + computer + java