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

com.sun.xml.ws.tx.coord.common.types.CoordinationContextTypeIF Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 1997, 2021 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
 */

package com.sun.xml.ws.tx.coord.common.types;

import java.util.Map;
import javax.xml.namespace.QName;
import jakarta.xml.ws.wsaddressing.W3CEndpointReference;
import jakarta.xml.ws.EndpointReference;


/**
 * 

Java class for CoordinationContextType complex type. * *

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

{@code
 * 
 *   
 *     
 *       
 *         
 *           
 *             
 *               
 *               
 *             
 *           
 *         
 *         
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ public interface CoordinationContextTypeIF { /** * Gets the value of the identifier property. * * @return * possible object is * {@link BaseIdentifier } * */ public abstract BaseIdentifier getIdentifier(); /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link BaseIdentifier } * */ public abstract void setIdentifier(BaseIdentifier value); /** * Gets the value of the expires property. * * @return * possible object is * {@link BaseExpires } * */ public abstract BaseExpires getExpires(); /** * Sets the value of the expires property. * * @param value * allowed object is * {@link BaseExpires } * */ public abstract void setExpires(BaseExpires value); /** * Gets the value of the coordinationType property. * * @return * possible object is * {@link String } * */ public abstract String getCoordinationType(); /** * Sets the value of the coordinationType property. * * @param value * allowed object is * {@link String } * */ public abstract void setCoordinationType(String value); /** * Gets the value of the registrationService property. * * @return * possible object is * {@link W3CEndpointReference } * */ public abstract T getRegistrationService(); /** * Sets the value of the registrationService property. * * @param value * allowed object is * {@link W3CEndpointReference } * */ public abstract void setRegistrationService(T value); public abstract Map getOtherAttributes(); public abstract C getDelegate(); }