use of com.netsuite.webservices.test.platform.messages.LogoutRequest in project components by Talend.
the class TestNetSuiteClientService method doLogout.
@Override
protected void doLogout() throws NetSuiteException {
try {
LogoutRequest request = new LogoutRequest();
port.logout(request);
} catch (Exception e) {
throw new NetSuiteException(e.getMessage(), e);
}
}
Aggregations