Skip to content

Commit 851188c

Browse files
committed
v0.0.5 released
1 parent 3ebf12a commit 851188c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ Just add the following maven dependency to your pom.xml file.
4343
<dependency>
4444
<groupId>com.github.ozayduman</groupId>
4545
<artifactId>specification-builder</artifactId>
46-
<version>0.0.4</version>
46+
<version>0.0.5</version>
4747
</dependency>
4848
````
4949
#### USAGE
5050

5151
#### SERVER-SIDE
5252
by using bind method you can enable properties to be used in dynamic query generation. Client is allowed to use the properties only bound via bind method.
53-
if DTO properties are different from the entity properties then you have to specify it as the first argument of the bind method e.g. `bind("employeeName", Employee_.name)`. Otherwise, you can fell free to omit it e.g. `bind("Employee_.name)`.
53+
if DTO properties are different from the entity properties then you have to specify it as the first argument of the bind method e.g. `bind("employeeName", Employee_.name)`. Otherwise, you can fell free to omit it e.g. `bind(Employee_.name)`.
5454

5555
![](.README_images/specification1.png)
5656
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.github.ozayduman</groupId>
1212
<artifactId>specification-builder</artifactId>
13-
<version>0.0.4</version>
13+
<version>0.0.5</version>
1414
<packaging>jar</packaging>
1515
<name>specification-builder</name>
1616
<description>Specification-Builder is a client-oriented dynamic search query library that supports joins among multiple tables in a strongly-type manner for Spring Projects. </description>

src/main/java/com/github/ozayduman/specificationbuilder/SpecificationOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ static SpecificationOperator notLike(){
187187

188188
/** Represents a Higher Order Function that inverts a given {@code SpecificationOperator}
189189
* @param operator is a Specification operator
190-
* @return {@Link SpecificationOperator}
190+
* @return {@link SpecificationOperator}
191191
*/
192192
static SpecificationOperator not(SpecificationOperator operator){
193193
return operator == null

0 commit comments

Comments
 (0)