blob: 59f8be7351f9b47a2b47c1edb66edcff564f3c0d [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.faults.KandulaGeneralException;
import org.apache.kandula.participant.KandulaResource;
import org.apache.kandula.participant.at.KandulaAtomicResource;
import org.apache.kandula.participant.ba.KandulaBusinessActivityResource;
import org.apache.kandula.utility.EndpointReferenceFactory;
public class ParticipantContext extends AbstractContext {
KandulaResource resource;
String ID;
EndpointReference coordinationEPR;
public ParticipantContext() {
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
* @throws KandulaGeneralException
*/
public void setResource(KandulaResource resource) throws KandulaGeneralException {
if (((this.getCoordinationContext().getCoordinationType().equals(Constants.WS_AT)) & (resource instanceof KandulaAtomicResource)) |((this.getCoordinationContext().getCoordinationType().equals(Constants.WS_BA_ATOMIC)) & (resource instanceof KandulaBusinessActivityResource)) )
{
resource.init(this);
this.resource = resource;
}else
{
throw new KandulaGeneralException("Invalid Resource");
}
}
public String getRegistrationProtocol() {
return resource.getProtocol();
}
public String getID() {
return ID;
}
public void setID(String id) {
ID = id;
}
}