![JAR search and dependency download from the Maven repository](/logo.png)
com.logicommerce.sdk.services.UserService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK for developing Logicommerce plugins.
package com.logicommerce.sdk.services;
/**
* UserService interface.
*
* @author Logicommerce
* @since 1.0.16
*/
public interface UserService extends PluginService {
/**
* upsert.
*
* @throws com.logicommerce.sdk.services.PluginServiceException if any.
*/
void upsert() throws PluginServiceException;
/**
* delete.
*
* @throws com.logicommerce.sdk.services.PluginServiceException if any.
*/
void delete() throws PluginServiceException;
/**
* login.
*
* @throws com.logicommerce.sdk.services.PluginServiceException if any.
*/
void login() throws PluginServiceException;
/**
* logout.
*
* @throws com.logicommerce.sdk.services.PluginServiceException if any.
*/
void logout() throws PluginServiceException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy