From 8cbaa370347e6fc997381cf35d6c295685b90f98 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Fri, 19 Jun 2026 11:29:14 +0000
Subject: [PATCH] move to new repo
---
dynamicjsonparser/src/main/java/com/megatim/dynamicjsonparser/pojo/Indexe.java | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 46 insertions(+), 0 deletions(-)
diff --git a/dynamicjsonparser/src/main/java/com/megatim/dynamicjsonparser/pojo/Indexe.java b/dynamicjsonparser/src/main/java/com/megatim/dynamicjsonparser/pojo/Indexe.java
new file mode 100644
index 0000000..544a73d
--- /dev/null
+++ b/dynamicjsonparser/src/main/java/com/megatim/dynamicjsonparser/pojo/Indexe.java
@@ -0,0 +1,46 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
+ */
+package com.megatim.dynamicjsonparser.pojo;
+
+/**
+ *
+ * @author ASUS
+ */
+public class Indexe {
+ private int position;
+
+ private String fullQualifiedNameOfField;
+
+ public Indexe(int position) {
+ this.position = position;
+ }
+
+ public Indexe(int position, String fullQualifiedNameOfField) {
+ this.position = position;
+ this.fullQualifiedNameOfField = fullQualifiedNameOfField;
+ }
+
+ public Indexe(String fullQualifiedNameOfField) {
+ this.fullQualifiedNameOfField = fullQualifiedNameOfField;
+ }
+
+ public int getPosition() {
+ return position;
+ }
+
+ public void setPosition(int position) {
+ this.position = position;
+ }
+
+ public String getFullQualifiedNameOfField() {
+ return fullQualifiedNameOfField;
+ }
+
+ public void setFullQualifiedNameOfField(String fullQualifiedNameOfField) {
+ this.fullQualifiedNameOfField = fullQualifiedNameOfField;
+ }
+
+
+}
--
Gitblit v1.10.0