summaryrefslogtreecommitdiffstats
path: root/auth/auth-batch/src/test/java
AgeCommit message (Expand)AuthorFilesLines
2019-01-22Failing JUsInstrumental1-10/+10
2019-01-22Public and Private Locate entriesInstrumental1-91/+92
2019-01-11Junit test file for AbsCredBody.javaDriptaroop Das1-0/+62
2018-11-30Change Batch PackagingInstrumental30-79/+152
2018-11-21Batch upgrades for ONAPInstrumental1-1/+1
2018-11-08Improve nonContainer Agent Config2.1.7Instrumental1-4/+5
2018-10-29Add more junits for batch & cmSai Gandham6-115/+392
2018-10-26Add more junits to batch moduleSai Gandham6-265/+995
2018-09-07Mass whitespace changes (Style Warnings)Instrumental2-3/+3
2018-09-07Mass removal of all Tabs (Style Warnings)Instrumental23-1060/+1060
2018-06-26Initial Interface for remote ConfigurationInstrumental1-2/+2
2018-05-21Increased code coverage auth batchgabe.maurer3-2/+171
2018-05-17Increased auth batch coveragegabe.maurer5-5/+213
2018-05-17Increased auth batch code coveragegabe.maurer3-4/+352
2018-05-15Increased code coverage auth batchgabe.maurer2-0/+157
2018-05-14Increased auth batch coveragegabe.maurer4-0/+254
2018-05-11Increased auth batch coveragegabe.maurer3-0/+252
2018-05-10Increased auth batch coveragegabe.maurer2-0/+214
2018-05-09Increased code coverage auth batchgabe.maurer6-1/+356
2018-05-09Increased coverage authfsgabe.maurer2-0/+151
this.capability = requirement.capability; this.name = requirement.name; this.ownerId = requirement.ownerId; this.ownerName = requirement.ownerName; this.node = requirement.node; this.uniqueId = requirement.uniqueId; this.relationship = requirement.relationship; this.minOccurrences = requirement.minOccurrences; this.maxOccurrences = requirement.maxOccurrences; this.initFilterTerm(); } } public getFullTitle():string { return this.ownerName + ': ' + this.name + ': [' + this.minOccurrences + ', ' + this.maxOccurrences + ']'; } public toJSON = ():any => { this.filterTerm = undefined; return this; }; private initFilterTerm = ():void => { this.filterTerm = (this.name + " ") + (this.ownerName + " " ) + (this.capability ? (this.capability.substring("tosca.capabilities.".length) + " " ) : "") + (this.node ? (this.node.substring("tosca.nodes.".length) + " ") : "") + (this.relationship ? (this.relationship.substring("tosca.relationships.".length) + " ") : "") + this.minOccurrences + "," + this.maxOccurrences; } }