
com.hazelcast.client.impl.protocol.task.management.GetSystemPropertiesMessageTask Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2008-2024, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.client.impl.protocol.task.management;
import com.hazelcast.client.impl.protocol.ClientMessage;
import com.hazelcast.client.impl.protocol.codec.MCGetSystemPropertiesCodec;
import com.hazelcast.client.impl.protocol.task.AbstractCallableMessageTask;
import com.hazelcast.instance.impl.Node;
import com.hazelcast.internal.management.ManagementCenterService;
import com.hazelcast.internal.nio.Connection;
import com.hazelcast.security.permission.ManagementPermission;
import java.security.Permission;
import java.util.AbstractMap.SimpleEntry;
import java.util.Collection;
import java.util.Map;
import java.util.Objects;
import static java.util.stream.Collectors.toList;
public class GetSystemPropertiesMessageTask extends AbstractCallableMessageTask {
private static final Permission REQUIRED_PERMISSION = new ManagementPermission("member.getSystemProperties");
public GetSystemPropertiesMessageTask(ClientMessage clientMessage, Node node, Connection connection) {
super(clientMessage, node, connection);
}
@Override
protected Object call() throws Exception {
return System.getProperties().entrySet().stream()
.map(e -> new SimpleEntry<>(Objects.toString(e.getKey()), Objects.toString(e.getValue())))
.collect(toList());
}
@Override
protected Void decodeClientMessage(ClientMessage clientMessage) {
return null;
}
@Override
protected ClientMessage encodeResponse(Object response) {
//noinspection unchecked
return MCGetSystemPropertiesCodec.encodeResponse((Collection>) response);
}
@Override
public String getServiceName() {
return ManagementCenterService.SERVICE_NAME;
}
@Override
public Permission getRequiredPermission() {
return REQUIRED_PERMISSION;
}
@Override
public String getDistributedObjectName() {
return null;
}
@Override
public String getMethodName() {
return "getSystemProperties";
}
@Override
public Object[] getParameters() {
return new Object[0];
}
@Override
public boolean isManagementTask() {
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy