aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/sdc-app/flows/FlowsEditorModal.js
AgeCommit message (Expand)AuthorFilesLines
2019-02-11react 16 upgradeEinav Weiss Keidar1-8/+8
2018-03-20Adding Prettier and fixing up eslint versionEinav Weiss Keidar1-32/+45
2017-06-09[SDC-29] Amdocs OnBoard 1707 initial commit.AviZi1-22/+24
2017-02-19Add new code new versionMichael Lando1-0/+54
'>4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
/*
 * Copyright © 2017-2018 AT&T Intellectual Property.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.ccsdk.cds.blueprintsprocessor.functions.netconf.executor.api

import com.fasterxml.jackson.annotation.JsonIgnore
import com.fasterxml.jackson.annotation.JsonProperty

class DeviceInfo {
    @get:JsonProperty("login-account")
    var username: String? = null
    @get:JsonProperty("login-key")
    var password: String? = null
    @get:JsonProperty("target-ip-address")
    var ipAddress: String? = null
    @get:JsonProperty("port-number")
    var port: Int = 0
    @get:JsonProperty("connection-time-out")
    var connectTimeout: Long = 5
    @get:JsonIgnore
    var source: String? = null
    @get:JsonIgnore
    var replyTimeout: Int = 5
    @get:JsonIgnore
    var idleTimeout: Int = 99999

    override fun toString(): String {
        return "$ipAddress:$port"
    }
    //TODO: should this be a data class instead? Is anything using the JSON serdes?
    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false
        return true
    }

    override fun hashCode(): Int {
        return javaClass.hashCode()
    }
}