File tree Expand file tree Collapse file tree 2 files changed +0
-22
lines changed
NetLicensingClient/src/main/java/com/labs64/netlicensing/domain/entity Expand file tree Collapse file tree 2 files changed +0
-22
lines changed Original file line number Diff line number Diff line change 1313package com .labs64 .netlicensing .domain .entity ;
1414
1515import java .math .BigDecimal ;
16- import java .util .List ;
1716import java .util .Map ;
1817
1918import com .labs64 .netlicensing .domain .vo .Currency ;
@@ -79,8 +78,4 @@ public interface License extends BaseEntity {
7978 LicenseTemplate getLicenseTemplate ();
8079
8180 void setLicenseTemplate (LicenseTemplate licenseTemplate );
82-
83- List <LicenseTransactionJoin > getLicenseTransactionJoins ();
84-
85- void setLicenseTransactionJoins (List <LicenseTransactionJoin > licenseTransactionJoins );
8681}
Original file line number Diff line number Diff line change 1313package com .labs64 .netlicensing .domain .entity .impl ;
1414
1515import java .math .BigDecimal ;
16- import java .util .ArrayList ;
1716import java .util .List ;
1817import java .util .Map ;
1918
2221import com .labs64 .netlicensing .domain .Constants ;
2322import com .labs64 .netlicensing .domain .entity .License ;
2423import com .labs64 .netlicensing .domain .entity .LicenseTemplate ;
25- import com .labs64 .netlicensing .domain .entity .LicenseTransactionJoin ;
2624import com .labs64 .netlicensing .domain .entity .Licensee ;
2725import com .labs64 .netlicensing .domain .vo .Currency ;
2826
@@ -45,8 +43,6 @@ public class LicenseImpl extends BaseEntityImpl implements License {
4543
4644 private LicenseTemplate licenseTemplate ;
4745
48- private List <LicenseTransactionJoin > licenseTransactionJoins ;
49-
5046 /**
5147 * @see BaseEntityImpl#getReservedProps()
5248 */
@@ -142,17 +138,4 @@ protected MultivaluedMap<String, Object> asPropertiesMap() {
142138 return map ;
143139 }
144140
145- @ Override
146- public List <LicenseTransactionJoin > getLicenseTransactionJoins () {
147- if (licenseTransactionJoins == null ) {
148- licenseTransactionJoins = new ArrayList <>();
149- }
150- return licenseTransactionJoins ;
151- }
152-
153- @ Override
154- public void setLicenseTransactionJoins (final List <LicenseTransactionJoin > licenseTransactionJoins ) {
155- this .licenseTransactionJoins = licenseTransactionJoins ;
156- }
157-
158141}
You can’t perform that action at this time.
0 commit comments