All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.activej.jmx.ProtoObjectName Maven / Gradle / Ivy

There is a newer version: 6.0-rc2
Show newest version
/*
 * Copyright (C) 2020 ActiveJ LLC.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * 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.
 */

package io.activej.jmx;

import org.jetbrains.annotations.Nullable;

import java.util.ArrayList;
import java.util.List;

public record ProtoObjectName(
	@Nullable String className, String packageName, @Nullable Object qualifier, @Nullable String scope,
	@Nullable String workerPoolQualifier, @Nullable String workerId, @Nullable List genericParameters
) {

	public static ProtoObjectName create(@Nullable String className, String packageName) {
		return new ProtoObjectName(className, packageName, null, null, null, null, null);
	}

	public ProtoObjectName withClassName(@Nullable String className) {
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, genericParameters);
	}

	public ProtoObjectName withPackageName(String packageName) {
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, genericParameters);
	}

	public ProtoObjectName withQualifier(@Nullable Object qualifier) {
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, genericParameters);
	}

	public ProtoObjectName withScope(@Nullable String scope) {
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, genericParameters);
	}

	public ProtoObjectName withWorkerPoolQualifier(@Nullable String workerPoolQualifier) {
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, genericParameters);
	}

	public ProtoObjectName withWorkerId(@Nullable String workerId) {
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, genericParameters);
	}

	public ProtoObjectName withGenericParameters(@Nullable List genericParameters) {
		ArrayList list = genericParameters == null ? null : new ArrayList<>(genericParameters);
		return new ProtoObjectName(className, packageName, qualifier, scope, workerPoolQualifier, workerId, list);
	}

	@Override
	public String toString() {
		return
			"ProtoObjectName{" +
			"className='" + className + '\'' +
			", packageName='" + packageName + '\'' +
			(qualifier == null ? "" : (", qualifier='" + qualifier + '\'')) +
			(scope == null ? "" : (", scope='" + scope + '\'')) +
			(workerPoolQualifier == null ? "" : (", workerPoolQualifier='" + workerPoolQualifier + '\'')) +
			(workerId == null ? "" : (", workerId='" + workerId + '\'')) +
			(genericParameters == null ? "" : (", genericParameters=" + genericParameters)) +
			'}';
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy