Skip to content

1.2.2 lambda-java-core release #367

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions aws-lambda-java-core/RELEASE.CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### November 09, 2022
`1.2.2`:
- Added new `CustomPojoSerializer` interface
- Removed unnecessary usage of public on interface methods (aws#172)

### April 28, 2020
`1.2.1`:
- Added missing XML namespace declarations to `pom.xml` file ([#97](https://github.com/aws/aws-lambda-java-libs/issues/97))
Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-java-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.amazonaws</groupId>
<artifactId>aws-lambda-java-core</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<packaging>jar</packaging>

<name>AWS Lambda Java Core Library</name>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. */

package com.amazonaws.services.lambda.runtime;

import java.io.InputStream;
import java.io.OutputStream;

import java.lang.reflect.Type;

/**
* Interface required to implement a custom plain old java objects serializer
*/
public interface CustomPojoSerializer {

/**
* Deserializes from input stream to plain old java object
* @param input input stream
* @param type plain old java object type
* @return deserialized plain old java object of type T
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's T?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's the type of the deserialized instance

Copy link

@pzygielo pzygielo Nov 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see the intention. But "deserialized plain old java object of type T" uses T which is undefined and unused anywhere else.

Now, in daylight, I see. I was blind.

*/
<T> T fromJson(InputStream input, Type type);

/**
* Deserializes from String to plain old java object
* @param input input string
* @param type plain old java object type
* @return deserialized plain old java object of type T
*/
<T> T fromJson(String input, Type type);

/**
* Serializes plain old java object to output stream
* @param value instance of type T to be serialized
* @param output OutputStream to serialize plain old java object to
* @param type plain old java object type
*/
<T> void toJson(T value, OutputStream output, Type type);
}