This commit is contained in:
Costantino Perciante 2017-12-13 17:35:23 +00:00
parent 7427f626f4
commit faa541df86
3 changed files with 6 additions and 2 deletions

View File

@ -6,6 +6,9 @@
<dependent-module archiveName="grsf-common-library-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/grsf-common-library/grsf-common-library"> <dependent-module archiveName="grsf-common-library-1.0.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/grsf-common-library/grsf-common-library">
<dependency-type>uses</dependency-type> <dependency-type>uses</dependency-type>
</dependent-module> </dependent-module>
<dependent-module archiveName="ckan-util-library-2.4.0-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/ckan-util-library/ckan-util-library">
<dependency-type>uses</dependency-type>
</dependent-module>
<property name="context-root" value="grsf-publisher-ws"/> <property name="context-root" value="grsf-publisher-ws"/>
<property name="java-output-path" value="/grsf-publisher-ws/target/classes"/> <property name="java-output-path" value="/grsf-publisher-ws/target/classes"/>
</wb-module> </wb-module>

View File

@ -65,6 +65,7 @@ public class ConnectedBean {
this.knowledeBaseId = knowledeBaseId; this.knowledeBaseId = knowledeBaseId;
} }
@SuppressWarnings("unchecked")
@Override @Override
public String toString() { public String toString() {

View File

@ -33,10 +33,10 @@ public class SimilarRecordBean {
* @param id * @param id
* @param description * @param description
*/ */
public SimilarRecordBean(String url, String id, String description, String name) { public SimilarRecordBean(String url, String semanticIdentifier, String description, String name) {
super(); super();
this.url = url; this.url = url;
this.id = id; this.id = semanticIdentifier;
this.description = description; this.description = description;
this.name = name; this.name = name;
} }