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

com.sun.xml.ws.rx.mc.protocol.wsmc200702.UnsupportedSelectionType Maven / Gradle / Ivy

/*
 * Copyright (c) 2010, 2022 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.3 in JDK 1.6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2009.02.10 at 06:38:58 PM CET
//


package com.sun.xml.ws.rx.mc.protocol.wsmc200702;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;
import javax.xml.namespace.QName;


/**
 *
 *                 The QName of the unsupported element(s) are included in the detail.
 *
 *
 * 

Java class for UnsupportedSelectionSType simple type. * *

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

{@code
 * 
 *   
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UnsupportedSelectionSType", propOrder = { "value" }) public class UnsupportedSelectionType { @XmlValue protected QName value; /** * * The QName of the unsupported element(s) are included in the detail. * * * @return * possible object is * {@link QName } * */ public QName getValue() { return value; } /** * * The QName of the unsupported element(s) are included in the detail. * * * @param value * allowed object is * {@link QName } * */ public void setValue(QName value) { this.value = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy