def __init__(
     self,
     environmentName,
     lbl="",
     definition="",
     category="",
     priority="",
     fitCriterion="",
     issue="",
     goalRefinements=[],
     subGoalRefinements=[],
     concs=[],
     cas=[],
 ):
     EnvironmentProperties.__init__(self, environmentName)
     self.theLabel = lbl
     self.theDefinition = definition
     self.theCategory = category
     self.thePriority = priority
     self.theFitCriterion = fitCriterion
     self.theIssue = issue
     self.theGoalRefinements = goalRefinements
     self.theSubGoalRefinements = subGoalRefinements
     self.theConcerns = concs
     self.theConcernAssociations = cas
示例#2
0
 def __init__(self,environmentName,lhood,assets,attackers,syProperties,pRationale):
   EnvironmentProperties.__init__(self,environmentName)
   self.theLikelihood = lhood
   self.theAssets = assets
   self.theAttackers = attackers
   self.theProperties = syProperties
   self.theRationale = pRationale
 def __init__(self,environmentName,lbl='',definition='',category='',gRefs=[], sgRefs=[], concs=[]):
   EnvironmentProperties.__init__(self,environmentName)
   self.theLabel = lbl
   self.theDefinition = definition
   self.theCategory = category
   self.theGoalRefinements = gRefs
   self.theSubGoalRefinements = sgRefs
   self.theConcerns = concs
 def __init__(self,environmentName,requirements = [],targets = [],properties = array((0,0,0,0,0,0,0,0)),rationale = ['None','None','None','None','None','None','None','None'],cost = '', roles = [], personas = {}):
   EnvironmentProperties.__init__(self,environmentName)
   self.theRequirements = requirements
   self.theTargets = targets
   self.theProperties = properties
   self.theRationale = rationale
   self.theCost = cost
   self.theRoles = roles
   self.thePersonas = personas
 def __init__(self,
              environmentName,
              syProperties,
              pRationale,
              associations=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theProperties = syProperties
     self.theRationale = pRationale
     self.theAssociations = associations
 def __init__(self,environmentName,deps = '',personas = [],assets = [],concs=[],narrative = '',consequences = '', benefits = '',tCodes={'narrative':{},'benefits':{},'consequences':{}}):
   EnvironmentProperties.__init__(self,environmentName)
   self.thePersonas = personas
   self.theAssets = assets
   self.theDependencies = deps
   self.theNarrative = narrative
   self.theConsequences = consequences
   self.theBenefits = benefits
   self.theConcernAssociations = concs
   self.theCodes = tCodes
 def __init__(self,
              environmentName,
              direct=False,
              description='',
              roles=[],
              pCodes={'narrative': {}}):
     EnvironmentProperties.__init__(self, environmentName)
     self.theDirectFlag = direct
     self.theNarrative = description
     self.theRoles = roles
     self.theCodes = pCodes
 def __init__(self,
              environmentName,
              lbl='',
              definition='',
              category='',
              gRefs=[],
              sgRefs=[],
              concs=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theLabel = lbl
     self.theDefinition = definition
     self.theCategory = category
     self.theGoalRefinements = gRefs
     self.theSubGoalRefinements = sgRefs
     self.theConcerns = concs
     self.theProbability = 0.0
     self.theProbabilityRationale = 'None'
 def __init__(self,
              environmentName,
              requirements=[],
              targets=[],
              properties=array((0, 0, 0, 0, 0, 0, 0, 0)),
              rationale=[
                  'None', 'None', 'None', 'None', 'None', 'None', 'None',
                  'None'
              ],
              cost='',
              roles=[],
              personas={}):
     EnvironmentProperties.__init__(self, environmentName)
     self.theRequirements = requirements
     self.theTargets = targets
     self.theProperties = properties
     self.theRationale = rationale
     self.theCost = cost
     self.theRoles = roles
     self.thePersonas = personas
示例#10
0
 def __init__(
     self,
     environmentName,
     deps="",
     personas=[],
     assets=[],
     concs=[],
     narrative="",
     consequences="",
     benefits="",
     tCodes={"narrative": {}, "benefits": {}, "consequences": {}},
 ):
     EnvironmentProperties.__init__(self, environmentName)
     self.thePersonas = personas
     self.theAssets = assets
     self.theDependencies = deps
     self.theNarrative = narrative
     self.theConsequences = consequences
     self.theBenefits = benefits
     self.theConcernAssociations = concs
     self.theCodes = tCodes
示例#11
0
 def __init__(self,
              environmentName,
              deps='',
              personas=[],
              assets=[],
              concs=[],
              narrative='',
              consequences='',
              benefits='',
              tCodes={
                  'narrative': {},
                  'benefits': {},
                  'consequences': {}
              }):
     EnvironmentProperties.__init__(self, environmentName)
     self.thePersonas = personas
     self.theAssets = assets
     self.theDependencies = deps
     self.theNarrative = narrative
     self.theConsequences = consequences
     self.theBenefits = benefits
     self.theConcernAssociations = concs
     self.theCodes = tCodes
示例#12
0
 def __init__(self,
              environmentName,
              lbl='',
              definition='',
              category='',
              priority='',
              fitCriterion='',
              issue='',
              goalRefinements=[],
              subGoalRefinements=[],
              concs=[],
              cas=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theLabel = lbl
     self.theDefinition = definition
     self.theCategory = category
     self.thePriority = priority
     self.theFitCriterion = fitCriterion
     self.theIssue = issue
     self.theGoalRefinements = goalRefinements
     self.theSubGoalRefinements = subGoalRefinements
     self.theConcerns = concs
     self.theConcernAssociations = cas
示例#13
0
 def __init__(self, environmentName, responses, countermeasures):
     EnvironmentProperties.__init__(self, environmentName)
     self.theResponses = responses
     self.theCountermeasures = countermeasures
示例#14
0
 def __init__(self, environmentName, type='', detPoint='', detMechs=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theType = type
     self.theDetectionPoint = detPoint
     self.theDetectionMechanisms = detMechs
 def __init__(self,environmentName,direct=False,description='',roles=[],pCodes={'narrative':{}}):
   EnvironmentProperties.__init__(self,environmentName)
   self.theDirectFlag = direct 
   self.theNarrative = description
   self.theRoles = roles
   self.theCodes = pCodes
 def __init__(self, environmentName, syProperties, pRationale, associations=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theProperties = syProperties
     self.theRationale = pRationale
     self.theAssociations = associations
 def __init__(self,environmentName,rationale = '',roles = []):
   EnvironmentProperties.__init__(self,environmentName)
   self.theRationale = rationale
   self.theRoles = roles
示例#18
0
 def __init__(self, environmentName, narrative=''):
     EnvironmentProperties.__init__(self, environmentName)
     self.theDescription = narrative
 def __init__(self, environmentName, severity, assets):
     EnvironmentProperties.__init__(self, environmentName)
     self.theSeverity = severity
     self.theAssets = assets
示例#20
0
 def __init__(self, environmentName, cost='', rationale=''):
     EnvironmentProperties.__init__(self, environmentName)
     self.theCost = cost
     self.theRationale = rationale
 def __init__(self,environmentName,preCond='',steps = None,postCond=''):
   EnvironmentProperties.__init__(self,environmentName)
   self.thePreCond = preCond
   self.theSteps = steps
   self.thePostCond = postCond
 def __init__(self, environmentName, type="", detPoint="", detMechs=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theType = type
     self.theDetectionPoint = detPoint
     self.theDetectionMechanisms = detMechs
示例#23
0
 def __init__(self, environmentName, rationale='', roles=[]):
     EnvironmentProperties.__init__(self, environmentName)
     self.theRationale = rationale
     self.theRoles = roles
 def __init__(self,environmentName,narrative = ''):
   EnvironmentProperties.__init__(self,environmentName)
   self.theDescription = narrative
 def __init__(self, environmentName, roles, motives, capabilities):
     EnvironmentProperties.__init__(self, environmentName)
     self.theRoles = roles
     self.theMotives = motives
     self.theCapabilities = capabilities
 def __init__(self,environmentName,severity,assets):
   EnvironmentProperties.__init__(self,environmentName)
   self.theSeverity = severity
   self.theAssets = assets
 def __init__(self,environmentName,cost = '',rationale = ''):
   EnvironmentProperties.__init__(self,environmentName)
   self.theCost = cost
   self.theRationale = rationale
示例#28
0
 def __init__(self, environmentName, roles, motives, capabilities):
     EnvironmentProperties.__init__(self, environmentName)
     self.theRoles = roles
     self.theMotives = motives
     self.theCapabilities = capabilities
 def __init__(self,environmentName,responses,countermeasures):
   EnvironmentProperties.__init__(self,environmentName)
   self.theResponses = responses
   self.theCountermeasures = countermeasures