org.netxms.client.maps.elements.NetworkMapDCIImage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netxms-client Show documentation
Show all versions of netxms-client Show documentation
NetXMS client library - complete JAVA API
/**
* NetXMS - open source network management system
* Copyright (C) 2003-2010 Victor Kirhenshtein
*
* 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.maps.elements;
import org.netxms.base.NXCPMessage;
import org.netxms.client.maps.configs.DCIImageConfiguration;
/**
* Network map element representing NetXMS DCI container
*
*/
public class NetworkMapDCIImage extends NetworkMapElement
{
private DCIImageConfiguration imageOptions;
/**
* @param msg
* @param baseId
*/
protected NetworkMapDCIImage(NXCPMessage msg, long baseId)
{
super(msg, baseId);
String DCIImageConfigXML = msg.getFieldAsString(baseId+10);
try
{
imageOptions = DCIImageConfiguration.createFromXml(DCIImageConfigXML);
}
catch(Exception e)
{
imageOptions = new DCIImageConfiguration();
}
}
/**
* Create new DCI image element
*
* @param id element ID
*/
public NetworkMapDCIImage(long id)
{
super(id);
type = MAP_ELEMENT_DCI_IMAGE;
imageOptions = new DCIImageConfiguration();
}
/* (non-Javadoc)
* @see org.netxms.client.maps.elements.NetworkMapElement#fillMessage(org.netxms.base.NXCPMessage, long)
*/
@Override
public void fillMessage(NXCPMessage msg, long baseId)
{
super.fillMessage(msg, baseId);
String xml = "";
try
{
xml = imageOptions.createXml();
}
catch(Exception e)
{
}
msg.setField(baseId + 10, xml);
}
/**
* @return the imageOptions
*/
public DCIImageConfiguration getImageOptions()
{
return imageOptions;
}
/**
* @param imageOptions the imageOptions to set
*/
public void setImageOptions(DCIImageConfiguration imageOptions)
{
this.imageOptions = imageOptions;
}
}