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: graphql-jpa-query-schema/src/main/java/com/introproventures/graphql/jpa/query/schema/impl/EntityIntrospector.java
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -124,7 +124,6 @@ public Collection<AttributePropertyDescriptor> getIgnoredPropertyDescriptors() {
124
124
/**
125
125
* Test if entity property is annotated with GraphQLIgnore
126
126
*
127
-
* @param entity a Java entity class to introspect
128
127
* @param propertyName the name of the property
129
128
* @return true if property has GraphQLIgnore annotation
130
129
* @throws NoSuchElementException if property does not exists
@@ -137,7 +136,6 @@ public Boolean isIgnored(String propertyName) {
137
136
/**
138
137
* Test if entity property is not ignored
139
138
*
140
-
* @param entity a Java entity class to introspect
141
139
* @param propertyName the name of the property
142
140
* @return true if property has no GraphQLIgnore annotation
143
141
* @throws NoSuchElementException if property does not exists
@@ -166,7 +164,6 @@ public boolean hasPropertyDescriptor(String fieldName) {
166
164
/**
167
165
* Test if Java bean property is transient according to JPA specification
168
166
*
169
-
* @param entity a Java entity class to introspect
170
167
* @param propertyName the name of the property
171
168
* @return true if property has Transient annotation or transient field modifier
172
169
* @throws NoSuchElementException if property does not exists
@@ -179,7 +176,6 @@ public Boolean isTransient(String propertyName) {
179
176
/**
180
177
* Test if Java bean property is persistent according to JPA specification
181
178
*
182
-
* @param entity a Java entity class to introspect
183
179
* @param propertyName the name of the property
184
180
* @return true if property is persitent
185
181
* @throws NoSuchElementException if property does not exists
0 commit comments