com.labs64.netlicensing.domain.entity.LicenseTransactionJoin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netlicensing-client Show documentation
Show all versions of netlicensing-client Show documentation
Java wrapper for Labs64 NetLicensing RESTful API
The newest version!
package com.labs64.netlicensing.domain.entity;
import java.io.Serializable;
public interface LicenseTransactionJoin extends Serializable {
void setTransaction(final Transaction transaction);
Transaction getTransaction();
void setLicense(final License license);
License getLicense();
}