package org.gcube.application.geoportal.service; import org.gcube.application.cms.tests.TestProfiles; import org.junit.Test; public class Profiles { @Test public void getFields(){ TestProfiles.profiles.forEach((k,v)->{ System.out.println(k+"\t"+v); v.getSchema().getChildren().forEach( i-> System.out.println(i.getClass()+"\t"+i) ); }); } }