Advertisement
Guest User

Untitled

a guest
Jan 18th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.40 KB | None | 0 0
  1. <?xml version="1.0">
  2. <wsla:SLA
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:wsla="http://www.ibm.com/wsla"
  5. name="A2PMessagingServiceLevelAgreement" >
  6. <Parties>
  7.     <ServiceProvider name="CLX-Communications">
  8.         <Contact>
  9.             <Street>Lindhagensgatan 74</Street>
  10.             <City> 112 18 Stockholm, Sweden </City>
  11.         </Contact>
  12.     </ServiceProvider>
  13.     <ServiceConsumer name="XInc">
  14.         <Contact>
  15.             <Street>30 Saw Mill River RD</Street>
  16.             <City>Hawthorne, NY 10532, USA</City>
  17.         </Contact>
  18.     </ServiceConsumer>
  19. </Parties>
  20. <ServiceDefinition>
  21.     <SLAParameter name="AvailabilityPerMonth"
  22.                type="float"
  23.                unit="AvaibleHoursPerMonth / TotalHoursPerMonth">
  24.         <Metric>Availability</Metric>
  25.         <Communication>
  26.             <Source>CLX-Communications</Source>
  27.             <Pull>Consumer</Pull>
  28.             <Push>Consumer</Push>
  29.         </Communication>
  30.     </SLAParameter>
  31.     <SLAParameter name="TransactionRate"
  32.                type="float"
  33.                unit="transactions / hour">
  34.         <Metric>Transactions</Metric>
  35.         <Communication>
  36.             <Source>CLX-Communications</Source>
  37.             <Pull>Consumer</Pull>
  38.             <Push>Consumer</Push>
  39.         </Communication>
  40.     </SLAParameter>
  41.     <SLAParameter name="DeliveryTime"
  42.                type="float"
  43.                unit="DeliverTime - SendTime">
  44.         <Metric>DeliveryTime</Metric>
  45.         <Communication>
  46.             <Source>CLX-Communications</Source>
  47.             <Pull>Consumer</Pull>
  48.             <Push>Consumer</Push>
  49.         </Communication>
  50.     </SLAParameter>
  51. </ServiceDefinition>
  52. <Obligations>
  53. <Expression>
  54.     <Or>
  55.         <Expression>
  56.             <Predicate xsi:type="Less">
  57.                 <SLAParameter>Availability</SLAParameter>
  58.                 <Value>99.99</Value>    
  59.             </Predicate>
  60.         </Expression>
  61.         <Expression>
  62.             <Predicate xsi:type="Greater">
  63.                 <SLAParameter>TransactionRate</SLAParameter>
  64.                 <Value>10000</Value>
  65.             </Predicate>
  66.         </Expression>
  67.         <Expression>
  68.             <Predicate xsi:type="Greater">
  69.                 <SLAParameter>DeliveryTime</SLAParameter>
  70.                 <Value>0.001</Value>
  71.             </Predicate>
  72.         </Expression>        
  73.     </Or>
  74. </Expression>
  75. </Obligations>
  76. </wsla:SLA>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement