Previous Topic: Creating a Software Package ProcedureNext Topic: Choosing a Target


Sealing a Software Package

You can seal your software package, ready for delivery.

Example 8: Sealing a Software Package

//This method seals the software package ready for delivery
private int sealSoftwarePackage() throws Exception
{
	String [] packageIDs = new String[1];
	Integer i = wsAPIconnector.sealSoftwarePackages (
	service.getSessionId(), packageIDs);
	System.out.println("FYI:  The return code from"
	+ " SealSoftwarePackages was "+ i.intValue());
	if(i.intValue() != 0)
		return i.intValue();
	else
		return UDSMWebService.RESULT_OK;
}