NodeBasedUrlConnection.java
452 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Node
*/
package com.adobe.aemds.datamanager.impl;
import com.adobe.aemds.datamanager.impl.AbstractUrlConnection;
import java.net.URL;
import javax.jcr.Node;
abstract class NodeBasedUrlConnection
extends AbstractUrlConnection {
protected Node node;
NodeBasedUrlConnection(URL url, Node node) {
super(url);
this.node = node;
}
}