00001 #pragma prefix "smgt.juniper.net" 00002 00006 module sae { 00007 00011 typedef sequence<string> StringSeq; 00012 00017 exception FeatureNotInstalled { 00018 wstring message; 00019 }; 00020 00025 interface SAEFeature { 00026 }; 00027 00031 interface ServiceActivationEngine { 00042 SAEFeature getFeature(in string name) 00043 raises (FeatureNotInstalled); 00044 00050 StringSeq getFeatureNames(); 00051 }; 00052 };