mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
159 lines
3.4 KiB
Java
159 lines
3.4 KiB
Java
// Licensed to the Apache Software Foundation (ASF) under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you 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 com.cloud.network.rules;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.cloudstack.acl.IAMEntityType;
|
|
|
|
public class StaticNatRuleImpl implements StaticNatRule {
|
|
long id;
|
|
String xid;
|
|
String uuid;
|
|
String protocol;
|
|
int portStart;
|
|
int portEnd;
|
|
State state;
|
|
long accountId;
|
|
long domainId;
|
|
long networkId;
|
|
long sourceIpAddressId;
|
|
String destIpAddress;
|
|
boolean forDisplay;
|
|
|
|
public StaticNatRuleImpl(FirewallRuleVO rule, String dstIp) {
|
|
id = rule.getId();
|
|
xid = rule.getXid();
|
|
uuid = rule.getUuid();
|
|
protocol = rule.getProtocol();
|
|
portStart = rule.getSourcePortStart();
|
|
portEnd = rule.getSourcePortEnd();
|
|
state = rule.getState();
|
|
accountId = rule.getAccountId();
|
|
domainId = rule.getDomainId();
|
|
networkId = rule.getNetworkId();
|
|
sourceIpAddressId = rule.getSourceIpAddressId();
|
|
destIpAddress = dstIp;
|
|
forDisplay = rule.isDisplay();
|
|
}
|
|
|
|
@Override
|
|
public String getProtocol() {
|
|
return protocol;
|
|
}
|
|
|
|
@Override
|
|
public Integer getSourcePortEnd() {
|
|
return portEnd;
|
|
}
|
|
|
|
@Override
|
|
public Purpose getPurpose() {
|
|
return Purpose.StaticNat;
|
|
}
|
|
|
|
@Override
|
|
public State getState() {
|
|
return state;
|
|
}
|
|
|
|
@Override
|
|
public long getAccountId() {
|
|
return accountId;
|
|
}
|
|
|
|
@Override
|
|
public long getDomainId() {
|
|
return domainId;
|
|
}
|
|
|
|
@Override
|
|
public long getNetworkId() {
|
|
return networkId;
|
|
}
|
|
|
|
@Override
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
@Override
|
|
public Integer getSourcePortStart() {
|
|
return portStart;
|
|
}
|
|
|
|
@Override
|
|
public Long getSourceIpAddressId() {
|
|
return sourceIpAddressId;
|
|
}
|
|
|
|
@Override
|
|
public String getDestIpAddress() {
|
|
return destIpAddress;
|
|
}
|
|
|
|
@Override
|
|
public String getXid() {
|
|
return xid;
|
|
}
|
|
|
|
@Override
|
|
public String getUuid() {
|
|
return uuid;
|
|
}
|
|
|
|
@Override
|
|
public Integer getIcmpCode() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Integer getIcmpType() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public List<String> getSourceCidrList() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public Long getRelated() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public FirewallRuleType getType() {
|
|
return FirewallRuleType.User;
|
|
}
|
|
|
|
@Override
|
|
public TrafficType getTrafficType() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public boolean isDisplay() {
|
|
return forDisplay;
|
|
}
|
|
|
|
@Override
|
|
public IAMEntityType getEntityType() {
|
|
return IAMEntityType.FirewallRule;
|
|
}
|
|
}
|