Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-31 Thread Ajay L
On Tue, May 23, 2017 at 8:12 AM, Robert Varga wrote: > On 23/05/17 16:50, Vishweshwar Hegde wrote: > > Thanks Robert for the information. > > > > Please refer below scenario: > > public static final QName QNAME = QName.create(XYZ.QNAME, > "abc").intern(); > > public static final YangInstanceIdent

Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-23 Thread Tom Pantelis
[mailto:tompante...@gmail.com] > *Sent:* Tuesday, May 23, 2017 8:36 PM > *To:* Vishweshwar Hegde > *Cc:* Robert Varga ; mdsal-...@lists.opendaylight.org; > controller-dev@lists.opendaylight.org > *Subject:* Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to > alter in

Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-23 Thread Vishweshwar Hegde
, -Vishwa From: Tom Pantelis [mailto:tompante...@gmail.com] Sent: Tuesday, May 23, 2017 8:36 PM To: Vishweshwar Hegde Cc: Robert Varga ; mdsal-...@lists.opendaylight.org; controller-dev@lists.opendaylight.org Subject: Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data

Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-23 Thread Robert Varga
On 23/05/17 16:50, Vishweshwar Hegde wrote: > Thanks Robert for the information. > > Please refer below scenario: > public static final QName QNAME = QName.create(XYZ.QNAME, "abc").intern(); > public static final YangInstanceIdentifier.NodeIdentifier NODEID = new > YangInstanceIdentifier.NodeIden

Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-23 Thread Tom Pantelis
On Tue, May 23, 2017 at 10:50 AM, Vishweshwar Hegde wrote: > Thanks Robert for the information. > > Please refer below scenario: > public static final QName QNAME = QName.create(XYZ.QNAME, "abc").intern(); > public static final YangInstanceIdentifier.NodeIdentifier NODEID = new > YangInstanceIden

Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-23 Thread Vishweshwar Hegde
Thanks Robert for the information. Please refer below scenario: public static final QName QNAME = QName.create(XYZ.QNAME, "abc").intern(); public static final YangInstanceIdentifier.NodeIdentifier NODEID = new YangInstanceIdentifier.NodeIdentifier(QNAME); In our cohort flow for "abc" input value

Re: [controller-dev] [mdsal-dev] Cohort or Restconf- How to alter input data?

2017-05-23 Thread Robert Varga
On 23/05/17 12:44, Vishweshwar Hegde wrote: > Hello, > > > > Is there any way can we alter or put condition to change restconf input > data? > > > > We are using cohort to validate restconf input data. > > > > Problem with DTCL is to getting into internal looping. > > > > Please p