Skip to content

Commit 4acbc48

Browse files
Removed copyright header and implemented toString
1 parent 79fc2ef commit 4acbc48

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

src/main/java/com/taboola/backstage/model/dictionary/ContextualSegment.java

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
/*
2-
* Copyright 2023 InPowered. All Rights Reserved.
3-
*
4-
* This software is the proprietary information of InPowered.
5-
* Use is subject to license terms.
6-
*/
71
package com.taboola.backstage.model.dictionary;
82

93
/**
@@ -119,4 +113,23 @@ public String getTaxonomyLabel() {
119113
public void setTaxonomyLabel(String taxonomyLabel) {
120114
this.taxonomyLabel = taxonomyLabel;
121115
}
116+
117+
@Override
118+
public String toString() {
119+
return "ContextualSegment{" +
120+
"id=" + id +
121+
", provider='" + provider + '\'' +
122+
", label='" + label + '\'' +
123+
", description='" + description + '\'' +
124+
", taxonomy='" + taxonomy + '\'' +
125+
", allowedCountries='" + allowedCountries + '\'' +
126+
", size=" + size +
127+
", articles=" + articles +
128+
", isTargetable=" + isTargetable +
129+
", isBundle=" + isBundle +
130+
", isActive=" + isActive +
131+
", taxonomyLabel='" + taxonomyLabel + '\'' +
132+
'}';
133+
}
134+
122135
}

0 commit comments

Comments
 (0)