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

org.netxms.client.agent.config.ConfigContent Maven / Gradle / Ivy

There is a newer version: 5.0.6
Show newest version
/**
 * NetXMS - open source network management system
 * Copyright (C) 2003-2014 Raden Solutions
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
package org.netxms.client.agent.config;

import org.netxms.base.NXCPCodes;
import org.netxms.base.NXCPMessage;

/**
 * Agent configuration file content
 */
public class ConfigContent
{
   private long id;
   private String config;
   private String filter;
   private String name;
   private long sequenceNumber;
   
   /**
    * Default constructior
    */
   public ConfigContent()
   {
      id = 0;
      config = "";
      filter = "";
      name = "New config";
      sequenceNumber = -1;
   }
   
   /**
    * Constructs object from message
    */
   public ConfigContent(long id, NXCPMessage response)
   {
      this.id = id;
      name = response.getFieldAsString(NXCPCodes.VID_NAME) == null ? "" : response.getFieldAsString(NXCPCodes.VID_NAME);
      config = response.getFieldAsString(NXCPCodes.VID_CONFIG_FILE) == null ? "" : response.getFieldAsString(NXCPCodes.VID_CONFIG_FILE);
      filter = response.getFieldAsString(NXCPCodes.VID_FILTER) == null ? "" : response.getFieldAsString(NXCPCodes.VID_FILTER);
      sequenceNumber = response.getFieldAsInt64(NXCPCodes.VID_SEQUENCE_NUMBER);
   }
   
   public void fillMessage(NXCPMessage request)
   {
      request.setFieldInt32(NXCPCodes.VID_CONFIG_ID, (int)id);
      request.setField(NXCPCodes.VID_NAME, name);
      request.setField(NXCPCodes.VID_CONFIG_FILE, config);
      request.setField(NXCPCodes.VID_FILTER, filter);
      request.setFieldInt32(NXCPCodes.VID_SEQUENCE_NUMBER, (int)sequenceNumber);
   }
   
   /**
    * @return the id
    */
   public long getId()
   {
      return id;
   }
   
   /**
    * @param id the id to set
    */
   public void setId(long id)
   {
      this.id = id;
   }

   /**
    * @return the config
    */
   public String getConfig()
   {
      return config;
   }

   /**
    * @param config the config to set
    */
   public void setConfig(String config)
   {
      this.config = config;
   }

   /**
    * @return the filter
    */
   public String getFilter()
   {
      return filter;
   }

   /**
    * @param filter the filter to set
    */
   public void setFilter(String filter)
   {
      this.filter = filter;
   }

   /**
    * @return the name
    */
   public String getName()
   {
      return name;
   }

   /**
    * @param name the name to set
    */
   public void setName(String name)
   {
      this.name = name;
   }

   /**
    * @return the sequenceNumber
    */
   public long getSequenceNumber()
   {
      return sequenceNumber;
   }

   /**
    * @param sequenceNumber the sequenceNumber to set
    */
   public void setSequenceNumber(long sequenceNumber)
   {
      this.sequenceNumber = sequenceNumber;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy