package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSDigestKey complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSDigestKey"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="objectName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSDigestKey", propOrder = { "objectName", "type" }) public class WSDigestKey { protected String objectName; protected String type; /** * Default no-arg constructor * */ public WSDigestKey() { super(); } /** * Fully-initialising value constructor * */ public WSDigestKey(final String objectName, final String type) { this.objectName = objectName; this.type = type; } /** * Gets the value of the objectName property. * * @return * possible object is * {@link String } * */ public String getObjectName() { return objectName; } /** * Sets the value of the objectName property. * * @param value * allowed object is * {@link String } * */ public void setObjectName(String value) { this.objectName = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }