public CoordinatorPortTypeRawXMLStub()

in src/org/apache/kandula/wsat/twopc/CoordinatorPortTypeRawXMLStub.java [36:74]


	public CoordinatorPortTypeRawXMLStub(EndpointReference targetEndpoint)
			throws AbstractKandulaException {
		super(KandulaConfiguration.getInstance()
				.getPariticipantAxis2ConfigurationContext());
		this.toEPR = targetEndpoint;

		// creating the operations
		AxisOperation operation;
		operations = new AxisOperation[5];

		operation = new OutOnlyAxisOperation();
		operation.setName(new javax.xml.namespace.QName(Constants.WS_AT,
				"PreparedOperation"));
		operations[0] = operation;
		service.addOperation(operation);

		operation = new OutOnlyAxisOperation();
		operation.setName(new javax.xml.namespace.QName(Constants.WS_AT,
				"AbortedOperation"));
		operations[1] = operation;
		service.addOperation(operation);
		operation = new OutOnlyAxisOperation();
		operation.setName(new javax.xml.namespace.QName(Constants.WS_AT,
				"ReadOnlyOperation"));
		operations[2] = operation;
		service.addOperation(operation);

		operation = new OutOnlyAxisOperation();
		operation.setName(new javax.xml.namespace.QName(Constants.WS_AT,
				"CommittedOperation"));
		operations[3] = operation;
		service.addOperation(operation);
		operation = new OutOnlyAxisOperation();
		operation.setName(new javax.xml.namespace.QName(Constants.WS_AT,
				"ReplayOperation"));
		operations[4] = operation;
		service.addOperation(operation);

	}