All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.core.model.environment.model.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { Entry } from './entry.model';

export class EnvironmentMetadata {
    constructor(
        public name: string,
        public description: string,
        public targets: Array = []) { }
}

export class Target {
    constructor(
        public name: string,
        public url: string,
        public properties: Array = [],
        public username?: string,
        public password?: string,
        public keyStore?: string,
        public keyStorePassword?: string,
        public privateKey?: string
    ) { }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy