com.sforce.ws.codegen.templates.iconnectionWrapper.st Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of force-wsc Show documentation
Show all versions of force-wsc Show documentation
Force.com Web Service Connector
The newest version!
iconnectionWrapper(gen) ::= <<
package $gen.packageName$;
/**
* This is a generated class for the SObject Enterprise API.
* Do not edit this file, as your changes will be lost.
*/
public interface $gen.interfaceName$ {
$gen.operations: { op |
public $op.returnTypeInterface$ $op.operationName$($op.argsWithInterfaces$)
throws com.sforce.ws.ConnectionException;
}$
}
>>