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

org.mitre.cybox.objects.Product Maven / Gradle / Ivy

There is a newer version: 1.2.0.2
Show newest version
/**
 * Copyright (c) 2015, The MITRE Corporation. All rights reserved.
 * See LICENSE for complete terms.
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.06.23 at 10:59:44 AM EDT 
//

package org.mitre.cybox.objects;

import java.io.StringReader;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import javax.xml.transform.stream.StreamSource;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
import org.mitre.cybox.common_2.CustomPropertiesType;
import org.mitre.cybox.common_2.ObjectPropertiesType;
import org.mitre.cybox.common_2.StringObjectPropertyType;
import org.mitre.stix.DocumentUtilities;
import org.mitre.stix.STIXSchema;
import org.mitre.stix.ValidationEventHandler;

/**
 * The ProductObjectType type is intended to characterize software or hardware products.
 * 
 * 

Java class for ProductObjectType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ProductObjectType">
 *   <complexContent>
 *     <extension base="{http://cybox.mitre.org/common-2}ObjectPropertiesType">
 *       <sequence>
 *         <element name="Edition" type="{http://cybox.mitre.org/common-2}StringObjectPropertyType" minOccurs="0"/>
 *         <element name="Language" type="{http://cybox.mitre.org/common-2}StringObjectPropertyType" minOccurs="0"/>
 *         <element name="Product" type="{http://cybox.mitre.org/common-2}StringObjectPropertyType" minOccurs="0"/>
 *         <element name="Update" type="{http://cybox.mitre.org/common-2}StringObjectPropertyType" minOccurs="0"/>
 *         <element name="Vendor" type="{http://cybox.mitre.org/common-2}StringObjectPropertyType" minOccurs="0"/>
 *         <element name="Version" type="{http://cybox.mitre.org/common-2}StringObjectPropertyType" minOccurs="0"/>
 *         <element name="Device_Details" type="{http://cybox.mitre.org/common-2}ObjectPropertiesType" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProductObjectType", namespace = "http://cybox.mitre.org/objects#ProductObject-2", propOrder = { "edition", "language", "product", "update", "vendor", "version", "deviceDetails" }) @XmlRootElement(name = "Product", namespace = "http://cybox.mitre.org/objects#ProductObject-2") public class Product extends ObjectPropertiesType implements Equals, HashCode, ToString { @XmlElement(name = "Edition") protected StringObjectPropertyType edition; @XmlElement(name = "Language") protected StringObjectPropertyType language; @XmlElement(name = "Product") protected StringObjectPropertyType product; @XmlElement(name = "Update") protected StringObjectPropertyType update; @XmlElement(name = "Vendor") protected StringObjectPropertyType vendor; @XmlElement(name = "Version") protected StringObjectPropertyType version; @XmlElement(name = "Device_Details") protected ObjectPropertiesType deviceDetails; /** * Default no-arg constructor * */ public Product() { super(); } /** * Fully-initialising value constructor * */ public Product(final CustomPropertiesType customProperties, final QName objectReference, final StringObjectPropertyType edition, final StringObjectPropertyType language, final StringObjectPropertyType product, final StringObjectPropertyType update, final StringObjectPropertyType vendor, final StringObjectPropertyType version, final ObjectPropertiesType deviceDetails) { super(customProperties, objectReference); this.edition = edition; this.language = language; this.product = product; this.update = update; this.vendor = vendor; this.version = version; this.deviceDetails = deviceDetails; } /** * Gets the value of the edition property. * * @return * possible object is * {@link StringObjectPropertyType } * */ public StringObjectPropertyType getEdition() { return edition; } /** * Sets the value of the edition property. * * @param value * allowed object is * {@link StringObjectPropertyType } * */ public void setEdition(StringObjectPropertyType value) { this.edition = value; } /** * Gets the value of the language property. * * @return * possible object is * {@link StringObjectPropertyType } * */ public StringObjectPropertyType getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link StringObjectPropertyType } * */ public void setLanguage(StringObjectPropertyType value) { this.language = value; } /** * Gets the value of the product property. * * @return * possible object is * {@link StringObjectPropertyType } * */ public StringObjectPropertyType getProduct() { return product; } /** * Sets the value of the product property. * * @param value * allowed object is * {@link StringObjectPropertyType } * */ public void setProduct(StringObjectPropertyType value) { this.product = value; } /** * Gets the value of the update property. * * @return * possible object is * {@link StringObjectPropertyType } * */ public StringObjectPropertyType getUpdate() { return update; } /** * Sets the value of the update property. * * @param value * allowed object is * {@link StringObjectPropertyType } * */ public void setUpdate(StringObjectPropertyType value) { this.update = value; } /** * Gets the value of the vendor property. * * @return * possible object is * {@link StringObjectPropertyType } * */ public StringObjectPropertyType getVendor() { return vendor; } /** * Sets the value of the vendor property. * * @param value * allowed object is * {@link StringObjectPropertyType } * */ public void setVendor(StringObjectPropertyType value) { this.vendor = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link StringObjectPropertyType } * */ public StringObjectPropertyType getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link StringObjectPropertyType } * */ public void setVersion(StringObjectPropertyType value) { this.version = value; } /** * Gets the value of the deviceDetails property. * * @return * possible object is * {@link ObjectPropertiesType } * */ public ObjectPropertiesType getDeviceDetails() { return deviceDetails; } /** * Sets the value of the deviceDetails property. * * @param value * allowed object is * {@link ObjectPropertiesType } * */ public void setDeviceDetails(ObjectPropertiesType value) { this.deviceDetails = value; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof Product)) { return false; } if (this == object) { return true; } if (!super.equals(thisLocator, thatLocator, object, strategy)) { return false; } final Product that = ((Product) object); { StringObjectPropertyType lhsEdition; lhsEdition = this.getEdition(); StringObjectPropertyType rhsEdition; rhsEdition = that.getEdition(); if (!strategy.equals( LocatorUtils.property(thisLocator, "edition", lhsEdition), LocatorUtils.property(thatLocator, "edition", rhsEdition), lhsEdition, rhsEdition)) { return false; } } { StringObjectPropertyType lhsLanguage; lhsLanguage = this.getLanguage(); StringObjectPropertyType rhsLanguage; rhsLanguage = that.getLanguage(); if (!strategy .equals(LocatorUtils.property(thisLocator, "language", lhsLanguage), LocatorUtils.property(thatLocator, "language", rhsLanguage), lhsLanguage, rhsLanguage)) { return false; } } { StringObjectPropertyType lhsProduct; lhsProduct = this.getProduct(); StringObjectPropertyType rhsProduct; rhsProduct = that.getProduct(); if (!strategy.equals( LocatorUtils.property(thisLocator, "product", lhsProduct), LocatorUtils.property(thatLocator, "product", rhsProduct), lhsProduct, rhsProduct)) { return false; } } { StringObjectPropertyType lhsUpdate; lhsUpdate = this.getUpdate(); StringObjectPropertyType rhsUpdate; rhsUpdate = that.getUpdate(); if (!strategy.equals( LocatorUtils.property(thisLocator, "update", lhsUpdate), LocatorUtils.property(thatLocator, "update", rhsUpdate), lhsUpdate, rhsUpdate)) { return false; } } { StringObjectPropertyType lhsVendor; lhsVendor = this.getVendor(); StringObjectPropertyType rhsVendor; rhsVendor = that.getVendor(); if (!strategy.equals( LocatorUtils.property(thisLocator, "vendor", lhsVendor), LocatorUtils.property(thatLocator, "vendor", rhsVendor), lhsVendor, rhsVendor)) { return false; } } { StringObjectPropertyType lhsVersion; lhsVersion = this.getVersion(); StringObjectPropertyType rhsVersion; rhsVersion = that.getVersion(); if (!strategy.equals( LocatorUtils.property(thisLocator, "version", lhsVersion), LocatorUtils.property(thatLocator, "version", rhsVersion), lhsVersion, rhsVersion)) { return false; } } { ObjectPropertiesType lhsDeviceDetails; lhsDeviceDetails = this.getDeviceDetails(); ObjectPropertiesType rhsDeviceDetails; rhsDeviceDetails = that.getDeviceDetails(); if (!strategy.equals(LocatorUtils.property(thisLocator, "deviceDetails", lhsDeviceDetails), LocatorUtils.property( thatLocator, "deviceDetails", rhsDeviceDetails), lhsDeviceDetails, rhsDeviceDetails)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = super.hashCode(locator, strategy); { StringObjectPropertyType theEdition; theEdition = this.getEdition(); currentHashCode = strategy.hashCode( LocatorUtils.property(locator, "edition", theEdition), currentHashCode, theEdition); } { StringObjectPropertyType theLanguage; theLanguage = this.getLanguage(); currentHashCode = strategy.hashCode( LocatorUtils.property(locator, "language", theLanguage), currentHashCode, theLanguage); } { StringObjectPropertyType theProduct; theProduct = this.getProduct(); currentHashCode = strategy.hashCode( LocatorUtils.property(locator, "product", theProduct), currentHashCode, theProduct); } { StringObjectPropertyType theUpdate; theUpdate = this.getUpdate(); currentHashCode = strategy.hashCode( LocatorUtils.property(locator, "update", theUpdate), currentHashCode, theUpdate); } { StringObjectPropertyType theVendor; theVendor = this.getVendor(); currentHashCode = strategy.hashCode( LocatorUtils.property(locator, "vendor", theVendor), currentHashCode, theVendor); } { StringObjectPropertyType theVersion; theVersion = this.getVersion(); currentHashCode = strategy.hashCode( LocatorUtils.property(locator, "version", theVersion), currentHashCode, theVersion); } { ObjectPropertiesType theDeviceDetails; theDeviceDetails = this.getDeviceDetails(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "deviceDetails", theDeviceDetails), currentHashCode, theDeviceDetails); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public Product withEdition(StringObjectPropertyType value) { setEdition(value); return this; } public Product withLanguage(StringObjectPropertyType value) { setLanguage(value); return this; } public Product withProduct(StringObjectPropertyType value) { setProduct(value); return this; } public Product withUpdate(StringObjectPropertyType value) { setUpdate(value); return this; } public Product withVendor(StringObjectPropertyType value) { setVendor(value); return this; } public Product withVersion(StringObjectPropertyType value) { setVersion(value); return this; } public Product withDeviceDetails(ObjectPropertiesType value) { setDeviceDetails(value); return this; } @Override public Product withCustomProperties(CustomPropertiesType value) { setCustomProperties(value); return this; } @Override public Product withObjectReference(QName value) { setObjectReference(value); return this; } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { super.appendFields(locator, buffer, strategy); { StringObjectPropertyType theEdition; theEdition = this.getEdition(); strategy.appendField(locator, this, "edition", buffer, theEdition); } { StringObjectPropertyType theLanguage; theLanguage = this.getLanguage(); strategy.appendField(locator, this, "language", buffer, theLanguage); } { StringObjectPropertyType theProduct; theProduct = this.getProduct(); strategy.appendField(locator, this, "product", buffer, theProduct); } { StringObjectPropertyType theUpdate; theUpdate = this.getUpdate(); strategy.appendField(locator, this, "update", buffer, theUpdate); } { StringObjectPropertyType theVendor; theVendor = this.getVendor(); strategy.appendField(locator, this, "vendor", buffer, theVendor); } { StringObjectPropertyType theVersion; theVersion = this.getVersion(); strategy.appendField(locator, this, "version", buffer, theVersion); } { ObjectPropertiesType theDeviceDetails; theDeviceDetails = this.getDeviceDetails(); strategy.appendField(locator, this, "deviceDetails", buffer, theDeviceDetails); } return buffer; } /** * Returns A Document representation of this instance that is not formatted. * * @return The Document representation for this instance. */ public org.w3c.dom.Document toDocument() { return toDocument(false); } /** * Returns A Document representation for this instance. * * @param prettyPrint * True for pretty print, otherwise false * * @return The Document representation for this instance. */ public org.w3c.dom.Document toDocument(boolean prettyPrint) { return DocumentUtilities.toDocument(toJAXBElement(), prettyPrint); } /** * Returns JAXBElement for this instance. * * @return The JAXBElement for this instance. */ @SuppressWarnings({ "rawtypes", "unchecked" }) public JAXBElement toJAXBElement() { QName qualifiedName = STIXSchema.getQualifiedName(this); return new JAXBElement(qualifiedName, Product.class, this); } /** * Returns String representation of this instance that is not formatted. * * @return The String containing the XML mark-up. */ public String toXMLString() { return toXMLString(false); } /** * Returns XML String for JAXB Document Object Model object. * * @param prettyPrint * True for pretty print, otherwise false * * @return The String containing the XML mark-up. */ public String toXMLString(boolean prettyPrint) { return DocumentUtilities.toXMLString(toDocument(), prettyPrint); } /** * Creates Product instance for XML String * * @param text * XML String for the document * @return The Product instance for the passed XML String */ public static Product fromXMLString(String text) { JAXBContext jaxbContext; try { jaxbContext = JAXBContext.newInstance(Product.class.getPackage() .getName()); Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); unmarshaller.setSchema(STIXSchema.getInstance().getSchema()); unmarshaller.setEventHandler(new ValidationEventHandler()); StreamSource streamSource = new StreamSource(new StringReader(text)); return (Product) unmarshaller.unmarshal(streamSource); } catch (JAXBException e) { throw new RuntimeException(e); } } /** * Validates the XML representation of this Product instance * Returning true indicating a successful validation, false if not. * * @return boolean */ public boolean validate() { return STIXSchema.getInstance().validate(toXMLString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy