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

com.netgrif.application.engine.importer.model.Encryption Maven / Gradle / Ivy


package com.netgrif.application.engine.importer.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for encryption complex type. * *

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

 * <complexType name="encryption">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>boolean">
 *       <attribute name="algorithm" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "encryption", propOrder = { "value" }) public class Encryption { @XmlValue protected boolean value; @XmlAttribute(name = "algorithm") @XmlSchemaType(name = "anySimpleType") protected String algorithm; /** * Gets the value of the value property. * */ public boolean isValue() { return value; } /** * Sets the value of the value property. * */ public void setValue(boolean value) { this.value = value; } /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { return algorithm; } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy