Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.mitre.capec.capec_2.Block Maven / Gradle / Ivy
/**
* 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.07.01 at 03:19:53 PM EDT
//
package org.mitre.capec.capec_2;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
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.stix.DocumentUtilities;
import org.mitre.stix.STIXSchema;
import org.mitre.stix.ValidationEventHandler;
import org.xml.sax.SAXException;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice maxOccurs="unbounded">
* <group ref="{http://capec.mitre.org/capec-2}Structured_Text_Group"/>
* <element ref="{http://capec.mitre.org/capec-2}Block"/>
* </choice>
* <attribute name="Block_Nature">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <whiteSpace value="collapse"/>
* <enumeration value="Good_Code"/>
* <enumeration value="Bad_Code"/>
* <enumeration value="Mitigation_Code"/>
* <enumeration value="Attack"/>
* <enumeration value="Result"/>
* <enumeration value="List"/>
* <enumeration value="Numeric_List"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "textTitlesAndTextsAndCodeExampleLanguages" })
@XmlRootElement(name = "Block")
public class Block implements Equals, HashCode, ToString {
@XmlElementRefs({
@XmlElementRef(name = "Images", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Block", namespace = "http://capec.mitre.org/capec-2", type = Block.class, required = false),
@XmlElementRef(name = "Text", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Code_Example_Language", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Text_Title", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Code", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class, required = false),
@XmlElementRef(name = "Comment", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class, required = false) })
protected List textTitlesAndTextsAndCodeExampleLanguages;
@XmlAttribute(name = "Block_Nature")
protected String blockNature;
/**
* Default no-arg constructor
*
*/
public Block() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public Block(final List textTitlesAndTextsAndCodeExampleLanguages,
final String blockNature) {
this.textTitlesAndTextsAndCodeExampleLanguages = textTitlesAndTextsAndCodeExampleLanguages;
this.blockNature = blockNature;
}
/**
* Gets the value of the textTitlesAndTextsAndCodeExampleLanguages property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the textTitlesAndTextsAndCodeExampleLanguages property.
*
*
* For example, to add a new item, do as follows:
*
* getTextTitlesAndTextsAndCodeExampleLanguages().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link Block.Images }{@code >}
* {@link Block }
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*
*/
public List getTextTitlesAndTextsAndCodeExampleLanguages() {
if (textTitlesAndTextsAndCodeExampleLanguages == null) {
textTitlesAndTextsAndCodeExampleLanguages = new ArrayList();
}
return this.textTitlesAndTextsAndCodeExampleLanguages;
}
/**
* Gets the value of the blockNature property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBlockNature() {
return blockNature;
}
/**
* Sets the value of the blockNature property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBlockNature(String value) {
this.blockNature = value;
}
public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator,
Object object, EqualsStrategy strategy) {
if (!(object instanceof Block)) {
return false;
}
if (this == object) {
return true;
}
final Block that = ((Block) object);
{
List lhsTextTitlesAndTextsAndCodeExampleLanguages;
lhsTextTitlesAndTextsAndCodeExampleLanguages = (((this.textTitlesAndTextsAndCodeExampleLanguages != null) && (!this.textTitlesAndTextsAndCodeExampleLanguages
.isEmpty())) ? this
.getTextTitlesAndTextsAndCodeExampleLanguages() : null);
List rhsTextTitlesAndTextsAndCodeExampleLanguages;
rhsTextTitlesAndTextsAndCodeExampleLanguages = (((that.textTitlesAndTextsAndCodeExampleLanguages != null) && (!that.textTitlesAndTextsAndCodeExampleLanguages
.isEmpty())) ? that
.getTextTitlesAndTextsAndCodeExampleLanguages() : null);
if (!strategy.equals(LocatorUtils.property(thisLocator,
"textTitlesAndTextsAndCodeExampleLanguages",
lhsTextTitlesAndTextsAndCodeExampleLanguages), LocatorUtils
.property(thatLocator,
"textTitlesAndTextsAndCodeExampleLanguages",
rhsTextTitlesAndTextsAndCodeExampleLanguages),
lhsTextTitlesAndTextsAndCodeExampleLanguages,
rhsTextTitlesAndTextsAndCodeExampleLanguages)) {
return false;
}
}
{
String lhsBlockNature;
lhsBlockNature = this.getBlockNature();
String rhsBlockNature;
rhsBlockNature = that.getBlockNature();
if (!strategy.equals(LocatorUtils.property(thisLocator,
"blockNature", lhsBlockNature), LocatorUtils.property(
thatLocator, "blockNature", rhsBlockNature),
lhsBlockNature, rhsBlockNature)) {
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 = 1;
{
List theTextTitlesAndTextsAndCodeExampleLanguages;
theTextTitlesAndTextsAndCodeExampleLanguages = (((this.textTitlesAndTextsAndCodeExampleLanguages != null) && (!this.textTitlesAndTextsAndCodeExampleLanguages
.isEmpty())) ? this
.getTextTitlesAndTextsAndCodeExampleLanguages() : null);
currentHashCode = strategy.hashCode(LocatorUtils.property(locator,
"textTitlesAndTextsAndCodeExampleLanguages",
theTextTitlesAndTextsAndCodeExampleLanguages),
currentHashCode,
theTextTitlesAndTextsAndCodeExampleLanguages);
}
{
String theBlockNature;
theBlockNature = this.getBlockNature();
currentHashCode = strategy.hashCode(LocatorUtils.property(locator,
"blockNature", theBlockNature), currentHashCode,
theBlockNature);
}
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
public Block withTextTitlesAndTextsAndCodeExampleLanguages(Object... values) {
if (values != null) {
for (Object value : values) {
getTextTitlesAndTextsAndCodeExampleLanguages().add(value);
}
}
return this;
}
public Block withTextTitlesAndTextsAndCodeExampleLanguages(
Collection values) {
if (values != null) {
getTextTitlesAndTextsAndCodeExampleLanguages().addAll(values);
}
return this;
}
public Block withBlockNature(String value) {
setBlockNature(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) {
{
List theTextTitlesAndTextsAndCodeExampleLanguages;
theTextTitlesAndTextsAndCodeExampleLanguages = (((this.textTitlesAndTextsAndCodeExampleLanguages != null) && (!this.textTitlesAndTextsAndCodeExampleLanguages
.isEmpty())) ? this
.getTextTitlesAndTextsAndCodeExampleLanguages() : null);
strategy.appendField(locator, this,
"textTitlesAndTextsAndCodeExampleLanguages", buffer,
theTextTitlesAndTextsAndCodeExampleLanguages);
}
{
String theBlockNature;
theBlockNature = this.getBlockNature();
strategy.appendField(locator, this, "blockNature", buffer,
theBlockNature);
}
return buffer;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Image" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence maxOccurs="unbounded">
* <element name="Image_Location" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Image_Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "images" })
public static class Images implements Equals, HashCode, ToString {
@XmlElement(name = "Image", required = true)
protected List images;
/**
* Default no-arg constructor
*
*/
public Images() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public Images(final List images) {
this.images = images;
}
/**
* Gets the value of the images property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the images property.
*
*
* For example, to add a new item, do as follows:
*
* getImages().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Block.Images.Image }
*
*
*/
public List getImages() {
if (images == null) {
images = new ArrayList();
}
return this.images;
}
public boolean equals(ObjectLocator thisLocator,
ObjectLocator thatLocator, Object object,
EqualsStrategy strategy) {
if (!(object instanceof Block.Images)) {
return false;
}
if (this == object) {
return true;
}
final Block.Images that = ((Block.Images) object);
{
List lhsImages;
lhsImages = (((this.images != null) && (!this.images.isEmpty())) ? this
.getImages() : null);
List rhsImages;
rhsImages = (((that.images != null) && (!that.images.isEmpty())) ? that
.getImages() : null);
if (!strategy
.equals(LocatorUtils.property(thisLocator, "images",
lhsImages), LocatorUtils.property(thatLocator,
"images", rhsImages), lhsImages, rhsImages)) {
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 = 1;
{
List theImages;
theImages = (((this.images != null) && (!this.images.isEmpty())) ? this
.getImages() : null);
currentHashCode = strategy.hashCode(
LocatorUtils.property(locator, "images", theImages),
currentHashCode, theImages);
}
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
public Block.Images withImages(Block.Images.Image... values) {
if (values != null) {
for (Block.Images.Image value : values) {
getImages().add(value);
}
}
return this;
}
public Block.Images withImages(Collection values) {
if (values != null) {
getImages().addAll(values);
}
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) {
{
List theImages;
theImages = (((this.images != null) && (!this.images.isEmpty())) ? this
.getImages() : null);
strategy.appendField(locator, this, "images", buffer, theImages);
}
return buffer;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence maxOccurs="unbounded">
* <element name="Image_Location" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Image_Title" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = { "imageLocationsAndImageTitles" })
public static class Image implements Equals, HashCode, ToString {
@XmlElementRefs({
@XmlElementRef(name = "Image_Title", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class),
@XmlElementRef(name = "Image_Location", namespace = "http://capec.mitre.org/capec-2", type = JAXBElement.class) })
protected List> imageLocationsAndImageTitles;
/**
* Default no-arg constructor
*
*/
public Image() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public Image(
final List> imageLocationsAndImageTitles) {
this.imageLocationsAndImageTitles = imageLocationsAndImageTitles;
}
/**
* Gets the value of the imageLocationsAndImageTitles property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the imageLocationsAndImageTitles property.
*
*
* For example, to add a new item, do as follows:
*
* getImageLocationsAndImageTitles().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link String }{@code >}
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*
*/
public List> getImageLocationsAndImageTitles() {
if (imageLocationsAndImageTitles == null) {
imageLocationsAndImageTitles = new ArrayList>();
}
return this.imageLocationsAndImageTitles;
}
public boolean equals(ObjectLocator thisLocator,
ObjectLocator thatLocator, Object object,
EqualsStrategy strategy) {
if (!(object instanceof Block.Images.Image)) {
return false;
}
if (this == object) {
return true;
}
final Block.Images.Image that = ((Block.Images.Image) object);
{
List> lhsImageLocationsAndImageTitles;
lhsImageLocationsAndImageTitles = (((this.imageLocationsAndImageTitles != null) && (!this.imageLocationsAndImageTitles
.isEmpty())) ? this
.getImageLocationsAndImageTitles() : null);
List> rhsImageLocationsAndImageTitles;
rhsImageLocationsAndImageTitles = (((that.imageLocationsAndImageTitles != null) && (!that.imageLocationsAndImageTitles
.isEmpty())) ? that
.getImageLocationsAndImageTitles() : null);
if (!strategy.equals(LocatorUtils.property(thisLocator,
"imageLocationsAndImageTitles",
lhsImageLocationsAndImageTitles), LocatorUtils
.property(thatLocator,
"imageLocationsAndImageTitles",
rhsImageLocationsAndImageTitles),
lhsImageLocationsAndImageTitles,
rhsImageLocationsAndImageTitles)) {
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 = 1;
{
List> theImageLocationsAndImageTitles;
theImageLocationsAndImageTitles = (((this.imageLocationsAndImageTitles != null) && (!this.imageLocationsAndImageTitles
.isEmpty())) ? this
.getImageLocationsAndImageTitles() : null);
currentHashCode = strategy.hashCode(LocatorUtils.property(
locator, "imageLocationsAndImageTitles",
theImageLocationsAndImageTitles), currentHashCode,
theImageLocationsAndImageTitles);
}
return currentHashCode;
}
public int hashCode() {
final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE;
return this.hashCode(null, strategy);
}
public Block.Images.Image withImageLocationsAndImageTitles(
JAXBElement... values) {
if (values != null) {
for (JAXBElement value : values) {
getImageLocationsAndImageTitles().add(value);
}
}
return this;
}
public Block.Images.Image withImageLocationsAndImageTitles(
Collection> values) {
if (values != null) {
getImageLocationsAndImageTitles().addAll(values);
}
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) {
{
List> theImageLocationsAndImageTitles;
theImageLocationsAndImageTitles = (((this.imageLocationsAndImageTitles != null) && (!this.imageLocationsAndImageTitles
.isEmpty())) ? this
.getImageLocationsAndImageTitles() : null);
strategy.appendField(locator, this,
"imageLocationsAndImageTitles", buffer,
theImageLocationsAndImageTitles);
}
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, Block.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 Block instance for XML String
*
* @param text
* XML String for the document
* @return The Block instance for the passed XML String
*/
public static Block fromXMLString(String text) {
JAXBContext jaxbContext;
try {
jaxbContext = JAXBContext.newInstance(Block.class.getPackage()
.getName());
Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
unmarshaller.setSchema(STIXSchema.getInstance().getSchema());
unmarshaller.setEventHandler(new ValidationEventHandler());
StreamSource streamSource = new StreamSource(new StringReader(text));
return (Block) unmarshaller.unmarshal(streamSource);
} catch (JAXBException e) {
throw new RuntimeException(e);
}
}
/**
* Validates the XML representation of this Block instance
* Returning true indicating a successful validation, false if not.
*
* @return boolean True If it validates against the schema
* @throws SAXException
* If the a validation ErrorHandler has not been set, and
* validation throws a SAXException
*/
public boolean validate() throws SAXException {
return STIXSchema.getInstance().validate(toXMLString());
}
}