Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ private enum LifecycleState {
/**
* Substitute {@link AuditEventHandler} to use when no query handler is available.
*/
private final class NullQueryHandler implements AuditEventHandler {
private static final class NullQueryHandler implements AuditEventHandler {

private final String errorMessage;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ private CellProcessor[] createCellProcessors(final String auditEntryType, final
/**
* CellProcessor for parsing JsonValue objects from CSV file.
*/
public class ParseJsonValue implements CellProcessor {
public static class ParseJsonValue implements CellProcessor {

@Override
public Object execute(final Object value, final CsvContext context) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2015 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

package org.forgerock.doc.maven.utils;
Expand Down Expand Up @@ -181,7 +182,7 @@ private String getExclusionsMatch(final String attribute, final String[] values)
/**
* Applies an XSL transformation to the matching files.
*/
private class Transformer extends XmlTransformer {
private static class Transformer extends XmlTransformer {
/**
* Constructs an updater to match DocBook XML files.
* <br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

package org.forgerock.http.bindings;
Expand Down Expand Up @@ -314,7 +315,7 @@ public void removeDescriptorListener(Listener listener) {
}
}

private final class TestSessionHandler implements Handler {
private static final class TestSessionHandler implements Handler {
@Override
public Promise<Response, NeverThrowsException> handle(Context context, Request request) {
final Session session = context.asContext(SessionContext.class).getSession();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*
* Copyright 2010–2011 ApexIdentity Inc.
* Portions Copyright 2011-2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/

package org.forgerock.http.io;
Expand Down Expand Up @@ -264,7 +265,7 @@ private void writeBuffer(byte[] b, int off, int len) throws IOException {
}

/** Object shared by all branches. */
private final class Trunk {
private static final class Trunk {
/** Keeps track of all branches on this trunk. */
private final List<BranchingStreamWrapper> branches = new ArrayList<>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public BufferedReader getReader() throws IOException {
return new BufferedReader(new InputStreamReader(getInputStream(), enc));
}

private class ServletInputStreamImpl extends ServletInputStream {
private static class ServletInputStreamImpl extends ServletInputStream {
private ByteArrayInputStream is;

public ServletInputStreamImpl(ByteArrayInputStream is) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2015-2016 ForgeRock AS.
* Portions Copyrighted 2026 3A Systems, LLC
*/
package org.forgerock.util.thread;

Expand Down Expand Up @@ -197,7 +198,7 @@ public void shutdown() {
* have its generated number appended to the end of it, in the form -X, where
* X is incremented once for each thread created.
*/
private class NamedThreadFactory implements ThreadFactory {
private static class NamedThreadFactory implements ThreadFactory {

private final AtomicInteger count = new AtomicInteger(0);
private final String name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* Portions Copyrighted 2026 3A Systems, LLC
*/

package com.persistit;
Expand Down Expand Up @@ -2803,7 +2804,7 @@ public Persistit getPersistit() {
}
}

class PruneTransactionPlayer implements TransactionPlayerListener
static class PruneTransactionPlayer implements TransactionPlayerListener
{

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public Class getColumnClass(final int col) {
* Default Renderers
**/

class AlignedCellRenderer extends DefaultTableCellRenderer {
static class AlignedCellRenderer extends DefaultTableCellRenderer {
AlignedCellRenderer(final int alignment) {
super();
setHorizontalAlignment(alignment);
Expand Down Expand Up @@ -323,7 +323,7 @@ public void setValue(final Object value) {
}
}

class KeyStateRenderer extends AlignedCellRenderer {
static class KeyStateRenderer extends AlignedCellRenderer {
private final Key _key;

public KeyStateRenderer() {
Expand All @@ -341,7 +341,7 @@ public void setValue(final Object value) {
}
}

class ValueStateRenderer extends AlignedCellRenderer {
static class ValueStateRenderer extends AlignedCellRenderer {
private final Value _value;

public ValueStateRenderer() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* Portions Copyrighted 2026 3A Systems, LLC
*/

package com.persistit.ui;
Expand Down Expand Up @@ -421,7 +422,7 @@ private Field[] getFields(final Class type) {
return array;
}

private class FieldComparator implements Comparator {
private static class FieldComparator implements Comparator {
@Override
public int compare(final Object a, final Object b) {
final Field fieldA = (Field) a;
Expand Down
Loading