Returns the current ARI version @return the version @throws ARIRuntimeException when version null
()
| 69 | * @throws ARIRuntimeException when version null |
| 70 | */ |
| 71 | public AriVersion getVersion() { |
| 72 | if (version == null) { |
| 73 | throw new ARIRuntimeException("AriVersion not set"); |
| 74 | } |
| 75 | return version; |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Get the implementation for a given action interface |
no outgoing calls