/* * Copyright 2014 by SCSK Corporation. * * This file is part of PrimeCloud Controller(TM). * * PrimeCloud Controller(TM) is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * PrimeCloud Controller(TM) is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with PrimeCloud Controller(TM). If not, see <http://www.gnu.org/licenses/>. */ package jp.primecloud.auto.service.dto; import java.io.Serializable; public class NetworkDto implements Serializable { /** TODO: フィールドコメントを記述 */ private static final long serialVersionUID = 1L; private String networkName; private String netmask; private String gateWay; private String dns1; private String dns2; private String rangeFrom; private String rangeTo; private boolean isPcc; public String getNetworkName() { return networkName; } public void setNetworkName(String networkName) { this.networkName = networkName; } public String getNetmask() { return netmask; } public void setNetmask(String netmask) { this.netmask = netmask; } public String getGateWay() { return gateWay; } public void setGateWay(String gateWay) { this.gateWay = gateWay; } public String getDns1() { return dns1; } public void setDns1(String dns1) { this.dns1 = dns1; } public String getDns2() { return dns2; } public void setDns2(String dns2) { this.dns2 = dns2; } public String getRangeFrom() { return rangeFrom; } public void setRangeFrom(String rangeFrom) { this.rangeFrom = rangeFrom; } public String getRangeTo() { return rangeTo; } public void setRangeTo(String rangeTo) { this.rangeTo = rangeTo; } public boolean isPcc() { return isPcc; } public void setIsPcc(boolean isPcc) { this.isPcc = isPcc; } }