All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.notronix.lw.methods.Method Maven / Gradle / Ivy

package com.notronix.lw.methods;

import com.notronix.lw.LinnworksAPIException;

public interface Method
{
    String getHost();
    void setHost(String host);

    String getSessionToken();
    void setSessionToken(String sessionToken);

    String getModule();
    String getName();
    String getPayload();

    void setJsonResult(String jsonResponse);
    String getJsonResult();

    T getResponse() throws LinnworksAPIException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy