Perform the following tasks to customize service implementations:
The ScriptService service provider interface (SPI) provides a Java interface that a script service implements. For information about the ScriptService interface and the ServiceSessionInfo interface, see the script service documentation in the SAE core API documentation on the Juniper Networks Web site at http://www.juniper.net/techpubs/software/management/src/api-index.html.
The implementation of the ScriptService interface activates the service. The SAE sends authentication and tracking events when it activates, modifies, or deactivates a script service session.
The SAE supports script services written in Java or Jython. For scripts written in Java, you must compile and package the implemented ScriptService to make it available for use by the SAE. A Java implementation can include more than one Java archive (JAR) file.
The SAE synchronizes methods used by the same instance of the ScriptService class. You do not need to provide synchronized implementation of the methods.
![]() |
Note: The script service implementation can be called by different threads at the same time. If your script uses resources that are shared between different service instances, you are responsible for synchronizing access to those resources. |
To write a script to be used by a script service:
These methods are implemented by the script service. They perform the associated action (activate, deactivate, modify) when the SAE calls the method.
getAccountingData()—Polls for current accounting data and returns any current accounting data.
getState()—Returns session data to be stored persistently on the router. The SAE does not use this data but provides it to the script when a service session is restored after failover.
The script service session releases any resources associated with a discarded session, but must not take any action to disrupt the service session.
You can also use the stopService() method on the ServiceSessionInfo object to stop a service and remove the service from the SAE. For example, consider a script service that monitors a state that it creates outside the SAE. If the script detects that the service is not active, it can stop the service and remove it from the SAE. You could use this type of script service to start a daemon process and monitor the process to make sure that it is alive.
![]() |
Note: The ScriptService SPI does not provide access to a router driver. |
Example: Using the ScriptService SPI in Jython
The following example implements the ScriptService SPI in Jython.
from net.juniper.smgt.sae.scriptservice import ScriptService
class SampleService(ScriptService):
def initSessionInfo(self, ssi): self.ssi = ssi
def activateSession(self): print "Activating ServiceName %s" % self.ssi.serviceName
def deactivateSession(self): print "Deactivating ServiceName %s" % self.ssi.serviceName return None
def modifySession(self, ssi): self.ssi = ssi print "Modifying ServiceName %s" % self.ssi.serviceName return None
def getAccountingData(self): print "Getting accounting data for ServiceName %s" % self.ssi.serviceName return None
def getState(self): return None
def initState(self, ssi, state): self.ssi = ssi pass
def discarded(self):
pass
Example: Using the ScriptService SPI in Java
The following example implements the ScriptService SPI in Java.
class SampleService implements ScriptService {
private ServiceSessionInfo ssi;
public SampleService() { }
public void initSessionInfo(ServiceSessionInfo ssi) {
this.ssi = ssi;
}
public void activateSession() {
System.out.println(“ Activating ServiceName ” +ssi.getServiceName());
}
public AccountingData deactivateSession() {
System.out.println(“ Deactivating ServiceName ” +ssi.getServiceName());
return null;
}
public AccountingData modifySessionSession(ServiceSessionInfo ssi) {
this.ssi = ssi;
System.out.println(“ Modifying ServiceName ” +ssi.getServiceName());
return null;
}
public AccountingData getAccountingData() {
System.out.println(“ Getting accounting data for ServiceName ” +ssi.getServiceName());
return null;
}
public byte[] getState() {
return null;
}
public initState(ServiceSessionInfo ssi, byte[] state) {
this.ssi = ssi;
}
public void discarded() {
}
}
Before you configure a script service, make sure that you know the location of the script file that the service will reference.
Use the following configuration statements to configure a script service in the global service scope:
- services global service name script {
- script-type (url | python | java-class | java-archive);
- class-name class-name;
- file file ;
- filename filename;
- }
Use the following configuration statements to configure a script service in a service scope:
- services scope name service name script {
- script-type (url | python | java-class | java-archive);
- class-name class-name;
- file file ;
- filename filename;
- }
To configure a script service:
[edit services scope script service scriptService script] user@host# show script-type url; class-name net.juniper.smgt.script.Service; file http://some-server/some-path/script-service.jar;