blob: 1d3f50fe2c3a2710624b52abc71e5f1d33fb3530 [file] [log] [blame]
/*
* Copyright 2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.kandula.context.impl;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.kandula.Constants;
import org.apache.kandula.Status;
import org.apache.kandula.context.AbstractContext;
import org.apache.kandula.participant.KandulaResource;
import org.apache.kandula.utility.EndpointReferenceFactory;
public class ATParticipantContext extends AbstractContext {
KandulaResource resource;
String ID;
EndpointReference coordinationEPR;
public ATParticipantContext() {
this.setStatus(Status.CoordinatorStatus.STATUS_ACTIVE);
ID = EndpointReferenceFactory.getRandomStringOf18Characters();
}
public EndpointReference getCoordinationEPR() {
return coordinationEPR;
}
public void setCoordinationEPR(EndpointReference endpointReference) {
this.coordinationEPR = endpointReference;
}
/*
* (non-Javadoc)
*
* @see org.apache.kandula.context.AbstractContext#getCoordinationType()
*/
public String getCoordinationType() {
return Constants.WS_AT;
}
/**
* @return Returns the transaction partcipant resource.
*/
public KandulaResource getResource() {
return resource;
}
/**
* @param setting
* the transaction participant resource
*/
public void setResource(KandulaResource resource) {
this.resource = resource;
}
public String getRegistrationProtocol() {
return resource.getProtocol();
}
public String getID() {
return ID;
}
public void setID(String id) {
ID = id;
}
}