mirror of
https://github.com/apache/cloudstack
synced 2026-08-10 00:16:08 +00:00
Following was done as a part of checkin: 1) NetworkOffering/Network: * add PF service support for default Guest network offering. * Add one more additional network - Public. * Allow to enable external firewall in Basic zone. 2) Don't allow to deployVm in Public Network. 3) Allow to add vlan ip ranges to Public networks in Basic zone. 4) Associate IP - allow to associate with Direct vms. 5) Allow to create PF/Static nat rules. Rules are being sent to External Firewall Rule only. 6) Add PF support to External Firewall element.
29 lines
1.0 KiB
Java
29 lines
1.0 KiB
Java
/**
|
|
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
|
|
*
|
|
* This software is licensed under the GNU General Public License v3 or later.
|
|
*
|
|
* It 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 3 of the License, or any later version.
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
package com.cloud.exception;
|
|
|
|
import com.cloud.utils.exception.CloudRuntimeException;
|
|
|
|
public class UnsupportedServiceException extends CloudRuntimeException{
|
|
|
|
public UnsupportedServiceException(String message) {
|
|
super(message);
|
|
}
|
|
}
|