aboutsummaryrefslogtreecommitdiffstats
path: root/datarouter-docker-compose/src
AgeCommit message (Collapse)AuthorFilesLines
2019-03-26DR AAF CADI integrationefiacor7-67/+134
Change-Id: I01548882f813e4029dddf7ddee2af12472163761 Issue-ID: DMAAP-1016 Signed-off-by: efiacor <fiachra.corcoran@est.tech>
2019-03-13Adding decompression option for user to a feed.edepaul1-0/+1
Change-Id: I2276d109fd65052cc043cdc2c7b4eb10655a0ac3 Issue-ID: DMAAP-1043 Signed-off-by: edepaul <paul.p.dennehy@est.tech>
2019-02-25AAF Certs update for DMaaP DReronkeo6-7/+6
Change-Id: Ib2840757024294343988396721cdf35cabcaf2a0 Issue-ID: DMAAP-1048 Signed-off-by: eronkeo <ronan.keogh@est.tech>
2019-02-14Add optional API for PM Mappereconwar1-15/+17
Added new field to Subscriber class to keep files after published Added new Delete endpoint so that file can then be deleted Change-Id: Id72da67689a7ceda8ddd4997cd6349b981cb1cdb Issue-ID: DMAAP-981 Signed-off-by: econwar <conor.ward@est.tech>
2019-02-05adding FILENAME value to LOG_RECORDS table.EmmettCox1-1/+2
Change-Id: Iea49d196f324b3a03a18d3d2084e5f6c7ad226ea Issue-ID: DMAAP-1022 Signed-off-by: EmmettCox <emmett.cox@est.tech>
2019-01-31Add RequestId and InvocationId to DREmmettCox1-1/+1
Change-Id: I42575123396ce4b07c824846a8b2b3ca49dfbd85 Issue-ID: DMAAP-941 Signed-off-by: EmmettCox <emmett.cox@est.tech>
2018-10-11Create ZIP with Dmaap DR docker-compose stuffPiotr Darosz12-0/+581
Add to POM the ability to create artifact with DMaaP DR docker-compose Change-Id: I50d09fc2a2a9325f92110d707d4c37d083d8b277 Issue-ID: DMAAP-847 Signed-off-by: Piotr Darosz <piotr.darosz@nokia.com>
00DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
import {RouterModule, Routes} from '@angular/router';
import {FlagsResolve} from "./shared/resolvers/flag/flag.resolver";
import {DrawingBoardRoutes} from "./drawingBoard/drawingBoard.routing";
import {GenericFormPopupComponent} from "./shared/components/genericFormPopup/generic-form-popup.component";
import {SupportComponent} from "./support/support.component";
import {HealthStatusRoutes} from "./healthStatus/health-status.routing";
import {VlanTaggingRoutes} from "./vlanTagging/vlan-tagging.routing";
import {InstantiationStatusRoutes} from "./instantiationStatus/InstantiationStatus.routing";
const routes: Routes = [
  ...DrawingBoardRoutes,
  ...HealthStatusRoutes,
  ...VlanTaggingRoutes,
  ...InstantiationStatusRoutes,
  {
    path: 'servicePopup',
    component: GenericFormPopupComponent,
    resolve: {
      flags: FlagsResolve
    }
  },
  {path: 'support', component: SupportComponent},
];
export const routing = RouterModule.forRoot(routes);