We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8debce9 commit bb3f954Copy full SHA for bb3f954
src/main/java/com/microsoft/graph/serializer/DerivedClassIdentifier.java
@@ -8,12 +8,16 @@
8
import javax.annotation.Nonnull;
9
import javax.annotation.Nullable;
10
11
+/** This class provides methods to get the derived class corresponding to the OData type when deserializing payloads. */
12
public class DerivedClassIdentifier {
13
14
private final static String ODATA_TYPE_KEY = "@odata.type";
15
16
private final ILogger logger;
-
17
+ /**
18
+ * Creates a new instance of the dereived class identifier.
19
+ * @param logger The logger to use.
20
+ */
21
public DerivedClassIdentifier(@Nonnull ILogger logger) {
22
this.logger = Objects.requireNonNull(logger, "logger parameter cannot be null");;
23
}
0 commit comments