You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: foundation/foundation-mda/src/main/java/com/boozallen/aiops/mda/metamodel/element/BaseRecordRelationDecorator.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -133,7 +133,7 @@ public String getCapitalizedName() {
Copy file name to clipboardexpand all lines: foundation/foundation-mda/src/main/java/com/boozallen/aiops/mda/metamodel/element/java/JavaRecordRelation.java
+8-18
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,6 @@ public JavaRecordRelation(Relation relationToDecorate) {
31
31
super(relationToDecorate);
32
32
}
33
33
34
-
/**
35
-
* Returns the reference record name formatted into camelcase but starts with a lowercase letter
36
-
* @return the reference record name formatted into camelcase but starts with a lowercase letter
37
-
*/
38
-
publicStringgetLowercaseName() {
39
-
char[] name = getName().toCharArray();
40
-
name[0] = Character.toLowerCase(name[0]);
41
-
returnnewString(name);
42
-
}
43
-
44
34
/**
45
35
* Returns the import for the generating the setters/getters of the reference record.
46
36
* @return generated class import
@@ -62,9 +52,9 @@ public Set<String> getGeneratedClassImport() {
Copy file name to clipboardexpand all lines: foundation/foundation-mda/src/main/resources/templates/data-delivery-data-records/spark.schema.base.java.vm
Copy file name to clipboardexpand all lines: test/test-mda-models/test-data-delivery-spark-model/src/test/java/com/boozallen/aiops/mda/pattern/SparkSchemaTest.java
0 commit comments