Skip to content

Commit bb3f954

Browse files
committed
- adds missing javadoc comments
1 parent 8debce9 commit bb3f954

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/com/microsoft/graph/serializer/DerivedClassIdentifier.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@
88
import javax.annotation.Nonnull;
99
import javax.annotation.Nullable;
1010

11+
/** This class provides methods to get the derived class corresponding to the OData type when deserializing payloads. */
1112
public class DerivedClassIdentifier {
1213

1314
private final static String ODATA_TYPE_KEY = "@odata.type";
1415

1516
private final ILogger logger;
16-
17+
/**
18+
* Creates a new instance of the dereived class identifier.
19+
* @param logger The logger to use.
20+
*/
1721
public DerivedClassIdentifier(@Nonnull ILogger logger) {
1822
this.logger = Objects.requireNonNull(logger, "logger parameter cannot be null");;
1923
}

0 commit comments

Comments
 (0)