Comparing version 0.1.15 to 0.1.16
@@ -10,7 +10,6 @@ var util = require('util'); | ||
function DebugOffRamp() { | ||
OffRamp.call(this); | ||
function DebugOffRamp() { | ||
} | ||
DebugOffRamp.prototype = OffRamp.prototype; | ||
DebugOffRamp.prototype = new OffRamp(); | ||
DebugOffRamp.prototype.constructor = DebugOffRamp; | ||
@@ -17,0 +16,0 @@ |
@@ -10,4 +10,3 @@ var util = require('util'); | ||
function FileOffRamp(){ | ||
OffRamp.call(this); | ||
function FileOffRamp(){ | ||
this.folder = ''; | ||
@@ -14,0 +13,0 @@ this.filename = ''; |
@@ -13,3 +13,2 @@ var util = require('util'); | ||
function HttpOffRamp() { | ||
OffRamp.call(this); | ||
this.destinationUrl = ''; | ||
@@ -19,3 +18,3 @@ this.httpMethod = 'GET'; | ||
HttpOffRamp.prototype = OffRamp.prototype; | ||
HttpOffRamp.prototype = new OffRamp(); | ||
HttpOffRamp.prototype.constructor = HttpOffRamp; | ||
@@ -22,0 +21,0 @@ |
@@ -11,4 +11,3 @@ var util = require('util'); | ||
function HttpScraper() { | ||
OffRamp.call(this); | ||
function HttpScraper() { | ||
this.destinationUrl = ''; | ||
@@ -21,3 +20,3 @@ this.httpMethod = 'GET'; | ||
HttpScraper.prototype = OffRamp.prototype; | ||
HttpScraper.prototype = new OffRamp(); | ||
HttpScraper.prototype.constructor = HttpScraper; | ||
@@ -24,0 +23,0 @@ |
@@ -10,4 +10,3 @@ var util = require('util'); | ||
function SqsOffRamp(){ | ||
OffRamp.call(this); | ||
function SqsOffRamp(){ | ||
this.queueName = ''; | ||
@@ -14,0 +13,0 @@ this.sqs = null; |
@@ -10,3 +10,4 @@ /* | ||
FileOnRamp.call(this); | ||
//FileOnRamp.call(this); | ||
// | ||
this.split = false; | ||
@@ -30,3 +31,3 @@ this.native = false; | ||
ExcelOnRamp.prototype.constructor = FileOnRamp; | ||
ExcelOnRamp.prototype.constructor = ExcelOnRamp; | ||
@@ -33,0 +34,0 @@ ExcelOnRamp.prototype.Split = function() { |
@@ -10,4 +10,3 @@ /* | ||
function FileOnRamp(){ | ||
OnRamp.call(this); | ||
this.location = null; | ||
@@ -14,0 +13,0 @@ this.filter = "*.*"; |
@@ -9,5 +9,3 @@ /* | ||
function SqsOnRamp(){ | ||
OnRamp.call(this); | ||
function SqsOnRamp(){ | ||
this.sqs = null; | ||
@@ -14,0 +12,0 @@ } |
{ "author": "Phil Taylor" | ||
, "name": "simpleesb" | ||
, "description": "Provides basic ESB services to transfer data between applications." | ||
, "version": "0.1.15" | ||
, "version": "0.1.16" | ||
, "repository": { | ||
@@ -6,0 +6,0 @@ "url": "https://bitbucket.org/phil_a_taylor/simpleesb" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
150677
982