Skip to content

Commit

Permalink
Release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaaano committed Jun 27, 2021
1 parent 2bc5b77 commit 564c515
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ pre defined providers in the classpath. You can also [implement your own](#custo
<dependency>
<groupId>com.juliaaano</groupId>
<artifactId>payload</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.juliaaano</groupId>
<artifactId>payload</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
<packaging>jar</packaging>

<name>Payload</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Thrown to indicate that a client has passed an invalid or unsupported
* {@link MediaType}.
*
* @author Juliano Mohr
* @author JM
*/
public class InvalidMediaTypeException extends IllegalArgumentException {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/juliaaano/payload/MediaType.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* type. Use it to retrieve {@link Payload} with the corresponding
* {@link PayloadFactory}.
*
* @author Juliano Mohr
* @author JM
*/
public enum MediaType {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/juliaaano/payload/Payload.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*
* @param <T> the Java object type for which this payload is represented by.
*
* @author Juliano Mohr
* @author JM
*/
public interface Payload<T> {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/juliaaano/payload/PayloadFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* therefore implementations of this factory should be media type specific,
* such as {@link com.juliaaano.payload.xml.XmlProviderFactory}.
*
* @author Juliano Mohr
* @author JM
*/
public interface PayloadFactory {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/juliaaano/payload/provider/Provider.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* It should be extended by clients of the library who wish to support
* additional (custom) providers.
*
* @author Juliano Mohr
* @author JM
*/
public interface Provider {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* General internal exception to be thrown when there are Provider related
* issues.
*
* @author Juliano Mohr
* @author JM
*/
public class ProviderException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* listed in META-INF/services files, following {@link java.util.ServiceLoader}
* specification.
*
* @author Juliano Mohr
* @author JM
*/
public interface ProviderFactory {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* META-INF/services files, as per specified in Java's
* {@link java.util.ServiceLoader}
*
* @author Juliano Mohr
* @author JM
*/
public interface ProviderStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* This strategy enables custom mechanisms to supply provider factories
* through the {@link ProviderFactorySource}.
*
* @author Juliano Mohr
* @author JM
*/
public class SourcingProviderStrategy<T extends ProviderFactory> implements ProviderStrategy {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* Source provider factories using {@link java.util.ServiceLoader} with
* implementations of {@link ProviderFactory}.
*
* @author Juliano Mohr
* @author JM
*/
public class SvcLoaderProviderFactorySource<T extends ProviderFactory> implements ProviderFactorySource<T> {

Expand Down

0 comments on commit 564c515

Please sign in to comment.