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

com.labs64.netlicensing.domain.entity.LicenseTransactionJoin Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy