File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212import java .util .Properties ;
1313
1414import org .apache .commons .configuration2 .Configuration ;
15+ import org .apache .commons .configuration2 .HierarchicalConfiguration ;
16+ import org .apache .commons .configuration2 .tree .ImmutableNode ;
1517import org .dspace .services .ConfigurationService ;
1618
1719/**
@@ -118,6 +120,16 @@ public Configuration getConfiguration() {
118120 throw new UnsupportedOperationException ();
119121 }
120122
123+ @ Override
124+ public HierarchicalConfiguration <ImmutableNode > getHierarchicalConfiguration () {
125+ throw new UnsupportedOperationException ();
126+ };
127+
128+ @ Override
129+ public List <HierarchicalConfiguration <ImmutableNode >> getChildren (String name ) {
130+ throw new UnsupportedOperationException ();
131+ };
132+
121133 @ Override
122134 public boolean hasProperty (String name ) {
123135 return properties .containsKey (name );
Original file line number Diff line number Diff line change 1313import org .dspace .eperson .service .AccountService ;
1414import org .dspace .eperson .service .EPersonService ;
1515import org .dspace .eperson .service .GroupService ;
16+ import org .dspace .eperson .service .RegistrationDataMetadataService ;
1617import org .dspace .eperson .service .RegistrationDataService ;
1718import org .dspace .eperson .service .SubscribeService ;
1819
@@ -41,6 +42,11 @@ public RegistrationDataService getRegistrationDataService() {
4142 throw new UnsupportedOperationException ();
4243 }
4344
45+ @ Override
46+ public RegistrationDataMetadataService getRegistrationDAtaDataMetadataService () {
47+ throw new UnsupportedOperationException ();
48+ };
49+
4450 @ Override
4551 public AccountService getAccountService () {
4652 throw new UnsupportedOperationException ();
You can’t perform that action at this time.
0 commit comments