com.sun.xml.ws.api.addressing.AddressingPropertySet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-osgi Show documentation
Show all versions of webservices-osgi Show documentation
Metro Web Services Runtime OSGi Bundle
The newest version!
/*
* Copyright (c) 1997, 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
*/
package com.sun.xml.ws.api.addressing;
import com.oracle.webservices.api.message.BasePropertySet;
/**
* This property set exists so the upper stack can SET addressing info
* on a PER-REQUEST basis (instead of a per proxy/dispatch basis via OneWayFeature).
*
* This class is NOT used for reading addressing header values.
*/
public class AddressingPropertySet extends BasePropertySet {
/**
* Default constructor.
*/
public AddressingPropertySet() {}
// NOTE: Setting ACTION on client side is covered by standard BindingProvider.
public static final String ADDRESSING_FAULT_TO = "com.sun.xml.ws.api.addressing.fault.to";
private String faultTo;
@Property(ADDRESSING_FAULT_TO)
public String getFaultTo() { return faultTo; }
public void setFaultTo(final String x) { faultTo = x; }
public static final String ADDRESSING_MESSAGE_ID = "com.sun.xml.ws.api.addressing.message.id";
private String messageId;
public String getMessageId() { return messageId; }
public void setMessageId(final String x) { messageId = x; }
public static final String ADDRESSING_RELATES_TO = "com.sun.xml.ws.api.addressing.relates.to";
@Property(ADDRESSING_RELATES_TO)
private String relatesTo;
public String getRelatesTo() { return relatesTo; }
public void setRelatesTo(final String x) { relatesTo = x; }
public static final String ADDRESSING_REPLY_TO = "com.sun.xml.ws.api.addressing.reply.to";
@Property(ADDRESSING_REPLY_TO)
private String replyTo;
public String getReplyTo() { return replyTo; }
public void setReplyTo(final String x) { replyTo = x; }
////////////////////////////////////////////////////
//
// PropertySet boilerplate
//
private static final PropertyMap model;
static {
model = parse(AddressingPropertySet.class);
}
@Override
protected PropertyMap getPropertyMap() {
return model;
}
}