src/org/apache/kandula/coordinator/at/ATParticipantInformation.java [52:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String getEnlistmentId() {
		return enlistmentId;
	}

	/**
	 * @return Returns the epr of the participant
	 */
	public EndpointReference getEpr() {
		return epr;
	}

	/**
	 * @return Returns the protocol of the participant (Eg: WS-AT, WS-BA)
	 */
	public String getProtocol() {
		return protocol;
	}

	/**
	 * @return Returns the status of the participant
	 */
	public int getStatus() {
		return status;
	}

	public void setEpr(EndpointReference epr) {
		this.epr = epr;
	}

	public void setStatus(int status) {
		this.status = status;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/org/apache/kandula/coordinator/ba/BAParticipantInformation.java [33:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public String getEnlistmentId() {
		return enlistmentId;
	}

	/**
	 * @return Returns the epr of the participant
	 */
	public EndpointReference getEpr() {
		return epr;
	}

	/**
	 * @return Returns the protocol of the participant (Eg: WS-AT, WS-BA)
	 */
	public String getProtocol() {
		return protocol;
	}

	/**
	 * @return Returns the status of the participant
	 */
	public int getStatus() {
		return status;
	}

	public void setEpr(EndpointReference epr) {
		this.epr = epr;
	}

	public void setStatus(int status) {
		this.status = status;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



