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

com.sun.xml.ws.rx.rm.runtime.transaction.TransactionPropertySet Maven / Gradle / Ivy

/*
 * Copyright (c) 2013, 2018 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.rx.rm.runtime.transaction;

import com.oracle.webservices.api.message.BasePropertySet;

/**
*
* @author Uday Joshi 
*/
public class TransactionPropertySet extends BasePropertySet {
    public static final String TX_OWNED_PROPERTY = "com.sun.xml.ws.rx.rm.runtime.transaction.owned";

    //Do we own the TX? This would be set to true when we begin the TX.
    private boolean owned = false;

    @Property(TX_OWNED_PROPERTY)
    public boolean isTransactionOwned() {
        return owned;
    }

    public void setTransactionOwned(boolean flag) {
        owned = flag;
    }

    ////////////////////////////////////////////////////
    //
    // PropertySet boilerplate
    //

    private static final PropertyMap model;

    static {
        model = parse(TransactionPropertySet.class);
    }

    @Override
    protected PropertyMap getPropertyMap() {
        return model;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy