com.netki.BaseObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netki-partner-client Show documentation
Show all versions of netki-partner-client Show documentation
Library used to access Netki's Partner API
The newest version!
package com.netki;
/**
* Superclass used for all Netki data containers
*/
abstract class BaseObject {
protected NetkiClient client;
/**
* Set Object's Associated NetkiClient
* @param client NetkiClient
*/
void setClient(NetkiClient client) {
this.client = client;
}
/**
* Get Object's Associated NetkiClient
* @return NetkiClient
*/
NetkiClient getClient() {
return client;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy