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

com.gemstone.gemfire.management.internal.cli.domain.MemberConfigurationInfo Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2015 Pivotal Software, 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. See accompanying
 * LICENSE file.
 */
package com.gemstone.gemfire.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