Loading src/main/java/org/etsi/osl/tmf/pcm620/reposervices/ProductOfferingRepoService.java +2 −2 Original line number Diff line number Diff line Loading @@ -716,13 +716,13 @@ public class ProductOfferingRepoService { // Build the name LIKE clause StringJoiner nameJoiner = new StringJoiner(" AND "); StringJoiner nameJoiner = new StringJoiner(" OR "); for (String term : searchList) { nameJoiner.add("p.name LIKE '%" + term + "%'"); } // Build the description LIKE clause StringJoiner descriptionJoiner = new StringJoiner(" AND "); StringJoiner descriptionJoiner = new StringJoiner(" OR "); for (String term : searchList) { descriptionJoiner.add("p.description LIKE '%" + term + "%'"); } Loading src/main/java/org/etsi/osl/tmf/scm633/reposervices/ServiceSpecificationRepoService.java +2 −2 Original line number Diff line number Diff line Loading @@ -1546,13 +1546,13 @@ public class ServiceSpecificationRepoService { // Build the name LIKE clause StringJoiner nameJoiner = new StringJoiner(" AND "); StringJoiner nameJoiner = new StringJoiner(" OR "); for (String term : searchList) { nameJoiner.add("s.name LIKE '%" + term + "%'"); } // Build the description LIKE clause StringJoiner descriptionJoiner = new StringJoiner(" AND "); StringJoiner descriptionJoiner = new StringJoiner(" OR "); for (String term : searchList) { descriptionJoiner.add("s.description LIKE '%" + term + "%'"); } Loading Loading
src/main/java/org/etsi/osl/tmf/pcm620/reposervices/ProductOfferingRepoService.java +2 −2 Original line number Diff line number Diff line Loading @@ -716,13 +716,13 @@ public class ProductOfferingRepoService { // Build the name LIKE clause StringJoiner nameJoiner = new StringJoiner(" AND "); StringJoiner nameJoiner = new StringJoiner(" OR "); for (String term : searchList) { nameJoiner.add("p.name LIKE '%" + term + "%'"); } // Build the description LIKE clause StringJoiner descriptionJoiner = new StringJoiner(" AND "); StringJoiner descriptionJoiner = new StringJoiner(" OR "); for (String term : searchList) { descriptionJoiner.add("p.description LIKE '%" + term + "%'"); } Loading
src/main/java/org/etsi/osl/tmf/scm633/reposervices/ServiceSpecificationRepoService.java +2 −2 Original line number Diff line number Diff line Loading @@ -1546,13 +1546,13 @@ public class ServiceSpecificationRepoService { // Build the name LIKE clause StringJoiner nameJoiner = new StringJoiner(" AND "); StringJoiner nameJoiner = new StringJoiner(" OR "); for (String term : searchList) { nameJoiner.add("s.name LIKE '%" + term + "%'"); } // Build the description LIKE clause StringJoiner descriptionJoiner = new StringJoiner(" AND "); StringJoiner descriptionJoiner = new StringJoiner(" OR "); for (String term : searchList) { descriptionJoiner.add("s.description LIKE '%" + term + "%'"); } Loading