package opc.ua.services;

import opc.ua.addressspace.datatypes.NodeId;

public class TranslateBrowsePathsToNodeIds {

	/** 
	 * request
	 */
	private RequestHeader requestHeader;
	private BrowsePath[] browsePaths;
	
	/**
	 * response
	 */
	private ResponseHeader responseHeader;
	private BrowsePathResult[] results;
	private DiagnosticInfo[] diagnosticInfos;
	
	private class BrowsePath {
		private NodeId startingNode;
		private RelativePath relativepath;
	}
	
	private class BrowsePathResult {
		private StatusCode statusCode;
		private BrowsePathTarget[] targets;
		   targetId
		   remainingPathIndex

	}
}
