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

org.apache.geode.management.internal.cli.domain.MemberConfigurationInfo Maven / Gradle / Ivy

Go to download

Apache Geode provides a database-like consistency model, reliable transaction processing and a shared-nothing architecture to maintain very low latency performance with high concurrency processing

There is a newer version: 1.15.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
 * agreements. See the NOTICE file distributed with this work for additional information regarding
 * copyright ownership. The ASF licenses this file to You 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 org.apache.geode.management.internal.cli.domain;

import java.io.Serializable;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;
import java.util.*;

public class MemberConfigurationInfo implements Serializable {

  private List jvmInputArguments;
  private Properties systemProperties;
  private Map gfePropsSetUsingApi;
  private Map gfePropsRuntime;
  private Map gfePropsSetWithDefaults;
  private Map gfePropsSetFromFile;
  private Map cacheAttributes;
  private List> cacheServerAttributes;
  private Map pdxAttributes;

  public MemberConfigurationInfo() {
    RuntimeMXBean runtimeBean = ManagementFactory.getRuntimeMXBean();
    setJvmInputArguments(runtimeBean.getInputArguments());

  }

  public List getJvmInputArguments() {
    return jvmInputArguments;
  }

  public void setJvmInputArguments(List jvmInputArguments) {
    this.jvmInputArguments = jvmInputArguments;
  }


  public Properties getSystemProperties() {
    return systemProperties;
  }

  public void setSystemProperties(Properties systemProperties) {
    this.systemProperties = systemProperties;
  }

  public Map getGfePropsSetUsingApi() {
    return gfePropsSetUsingApi;
  }

  public void setGfePropsSetUsingApi(Map gfePropsSetUsingApi) {
    this.gfePropsSetUsingApi = gfePropsSetUsingApi;
  }

  public Map getGfePropsRuntime() {
    return gfePropsRuntime;
  }

  public void setGfePropsRuntime(Map gfePropsRuntime) {
    this.gfePropsRuntime = gfePropsRuntime;
  }

  public Map getGfePropsSetWithDefaults() {
    return gfePropsSetWithDefaults;
  }

  public void setGfePropsSetWithDefaults(Map gfePropsSetWithDefaults) {
    this.gfePropsSetWithDefaults = gfePropsSetWithDefaults;
  }

  public Map getGfePropsSetFromFile() {
    return gfePropsSetFromFile;
  }

  public void setGfePropsSetFromFile(Map gfePropsSetFromFile) {
    this.gfePropsSetFromFile = gfePropsSetFromFile;
  }


  public Map getCacheAttributes() {
    return cacheAttributes;
  }

  public void setCacheAttributes(Map cacheAttributes) {
    this.cacheAttributes = cacheAttributes;
  }

  public List> getCacheServerAttributes() {
    return cacheServerAttributes;
  }

  public void setCacheServerAttributes(List> cacheServerAttributes) {
    this.cacheServerAttributes = cacheServerAttributes;
  }

  public Map getPdxAttrributes() {
    return pdxAttributes;
  }

  public void setPdxAttrributes(Map pdxAttrributes) {
    this.pdxAttributes = pdxAttrributes;
  }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy