Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
1513 ICicsRegion interface has default implementation of getRegionPro…
Browse files Browse the repository at this point in the history
…perty

Signed-off-by: Mike Cobbett <[email protected]>
  • Loading branch information
techcobweb committed Aug 2, 2024
1 parent 3ae1631 commit 3d327ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,7 @@ public interface ICicsRegion {
*
* @throws CicstsManagerException
*/
public String getRegionProperty( String propertyName ) throws CicstsManagerException;
public default String getRegionProperty( String propertyName ) throws CicstsManagerException {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,4 @@ public void alterSit(@NotNull String sitParam, String sitValue) throws CicstsMan
public void removeSit(@NotNull String sitParam) throws CicstsManagerException {
throw new CicstsManagerException("Remove SIT is not supported under DSE provisioning");
}

@Override
public String getRegionProperty( String propertyName ) throws CicstsManagerException {
return null;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -582,8 +582,4 @@ private void rebuildRuntimeJob(CICSRegion region) throws CicstsManagerException
buildCicsJcl(jobs.get(0));
}

@Override
public String getRegionProperty( String propertyName ) throws CicstsManagerException {
return null;
}
}

0 comments on commit 3d327ac

Please sign in to comment.