mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-10-26 08:42:29 +01:00 
			
		
		
		
	Merge branch 'master' into vpc
Conflicts: server/src/com/cloud/network/lb/LoadBalancingRulesManagerImpl.java
This commit is contained in:
		
						commit
						31f9d718fb
					
				| @ -184,9 +184,9 @@ | ||||
|   </path> | ||||
| 
 | ||||
| 
 | ||||
|   <target name="compile-plugins" description="Compile all of the jars corresponding to plugins" depends="compile-utils, compile-api, compile-core, compile-server, compile-hypervisors, compile-deployment-planners, compile-host-allocators, compile-network-elements, compile-user-authenticators, compile-storage-allocators "/> | ||||
|   <target name="compile-plugins" description="Compile all of the jars corresponding to plugins" depends="compile-utils, compile-api, compile-core, compile-server, compile-hypervisors, compile-deployment-planners, compile-host-allocators, compile-network-elements, compile-user-authenticators, compile-storage-allocators, compile-file-systems "/> | ||||
| 
 | ||||
|   <target name="build-plugins" depends="build-hypervisors, build-network-elements, build-deployment-planners, build-host-allocators, build-storage-allocators, build-user-authenticators" description="Builds all jar's for the plug-in's"/> | ||||
|   <target name="build-plugins" depends="build-hypervisors, build-network-elements, build-deployment-planners, build-host-allocators, build-storage-allocators, build-user-authenticators, build-file-systems" description="Builds all jar's for the plug-in's"/> | ||||
| 
 | ||||
|   <target name="clean-plugins" description="Clean all of the generated files by the plugins"> | ||||
|       <delete file="${build.log}" /> | ||||
| @ -279,8 +279,8 @@ | ||||
| 
 | ||||
|   <!-- ===================== Network Elements ===================== --> | ||||
| 
 | ||||
|   <target name="compile-network-elements" depends="compile-netscaler, compile-f5, compile-srx, compile-ovs" description="Compile all network elements"/> | ||||
|   <target name="build-network-elements" depends="build-netscaler, build-f5, build-srx, build-ovs" description="build all network elements"/> | ||||
|   <target name="compile-network-elements" depends="compile-netscaler, compile-f5, compile-srx, compile-ovs, compile-elb" description="Compile all network elements"/> | ||||
|   <target name="build-network-elements" depends="build-netscaler, build-f5, build-srx, build-ovs, build-elb" description="build all network elements"/> | ||||
|   | ||||
|   <target name="compile-netscaler" depends="-init, compile-server" description="Compile NetScaler plugin"> | ||||
|   	<ant antfile="${base.dir}/plugins/network-elements/netscaler/build.xml" target="build"/> | ||||
| @ -302,4 +302,21 @@ | ||||
|   </target> | ||||
|   <target name="build-ovs" depends="compile-ovs"/> | ||||
| 
 | ||||
|   <target name="compile-elb" depends="-init, compile-server" description="Compile ELB plugin"> | ||||
|   	<ant antfile="${base.dir}/plugins/network-elements/elastic-loadbalancer/build.xml" target="build"/> | ||||
|   </target> | ||||
|   <target name="build-elb" depends="compile-elb"/> | ||||
| 
 | ||||
| 
 | ||||
|   <!-- ===================== File Systems ===================== --> | ||||
| 
 | ||||
|   <target name="compile-file-systems" depends="compile-netapp" description="Compils all supported file systems"/> | ||||
|   <target name="build-file-systems" depends="build-netapp" description="Builds all supported file systems"/> | ||||
|   | ||||
|   <target name="compile-netapp" depends="-init, compile-server" description="Compile NetApp plugin"> | ||||
|   	<ant antfile="${base.dir}/plugins/file-systems/netapp/build.xml" target="build"/> | ||||
|   </target> | ||||
|   <target name="build-netapp" depends="compile-netapp"/> | ||||
| 
 | ||||
| 
 | ||||
| </project> | ||||
|  | ||||
| @ -161,6 +161,7 @@ | ||||
|         </adapters> | ||||
|         <manager name="VmwareManager" key="com.cloud.hypervisor.vmware.manager.VmwareManager" class="com.cloud.hypervisor.vmware.manager.VmwareManagerImpl"/> | ||||
|         <manager name="OvsTunnelManager" key="com.cloud.network.ovs.OvsTunnelManager" class="com.cloud.network.ovs.OvsTunnelManagerImpl"/> | ||||
|         <manager name="ElasticLoadBalancerManager" key="com.cloud.network.lb.ElasticLoadBalancerManager" class="com.cloud.network.lb.ElasticLoadBalancerManagerImpl"/> | ||||
|         <pluggableservice name="VirtualRouterElementService" key="com.cloud.network.element.VirtualRouterElementService" class="com.cloud.network.element.VirtualRouterElement"/> | ||||
|         <pluggableservice name="NetscalerExternalLoadBalancerElementService" key="com.cloud.network.element.NetscalerLoadBalancerElementService" class="com.cloud.network.element.NetscalerElement"/> | ||||
|         <pluggableservice name="F5ExternalLoadBalancerElementService" key="com.cloud.network.element.F5ExternalLoadBalancerElementService" class="com.cloud.network.element.F5ExternalLoadBalancerElement"/> | ||||
| @ -170,6 +171,11 @@ | ||||
|         <dao name="CiscoNexusVSMDeviceDao" class="com.cloud.network.dao.CiscoNexusVSMDeviceDaoImpl" singleton="false"/> | ||||
|         <dao name="OvsTunnelInterfaceDao" class="com.cloud.network.ovs.dao.OvsTunnelInterfaceDaoImpl" singleton="false"/> | ||||
|         <dao name="OvsTunnelAccountDao" class="com.cloud.network.ovs.dao.OvsTunnelNetworkDaoImpl" singleton="false"/> | ||||
|         <dao name="NetappPool" class="com.cloud.netapp.dao.PoolDaoImpl" singleton="false"/> | ||||
|         <dao name="NetappVolume" class="com.cloud.netapp.dao.VolumeDaoImpl" singleton="false"/> | ||||
|         <dao name="NetappLun" class="com.cloud.netapp.dao.LunDaoImpl" singleton="false"/> | ||||
|         <manager name="NetappManager" key="com.cloud.netapp.NetappManager" class="com.cloud.netapp.NetappManagerImpl"/> | ||||
|         <dao name="ElasticLbVmMapDao" class="com.cloud.network.lb.dao.ElasticLbVmMapDaoImpl" singleton="false"/> | ||||
|     </management-server> | ||||
| 
 | ||||
|     <configuration-server class="com.cloud.server.ConfigurationServerImpl"> | ||||
|  | ||||
							
								
								
									
										13
									
								
								cloud.spec
									
									
									
									
									
								
							
							
						
						
									
										13
									
								
								cloud.spec
									
									
									
									
									
								
							| @ -414,6 +414,19 @@ fi | ||||
| %{_javadir}/%{name}-server.jar | ||||
| %{_javadir}/%{name}-vmware-base.jar | ||||
| %{_javadir}/%{name}-ovm.jar | ||||
| %{_javadir}/%{name}-dp-user-concentrated-pod.jar | ||||
| %{_javadir}/%{name}-dp-user-dispersing.jar | ||||
| %{_javadir}/%{name}-host-allocator-random.jar | ||||
| %{_javadir}/%{name}-plugin-f5.jar | ||||
| %{_javadir}/%{name}-plugin-netscaler.jar | ||||
| %{_javadir}/%{name}-plugin-ovs.jar | ||||
| %{_javadir}/%{name}-plugin-srx.jar | ||||
| %{_javadir}/%{name}-storage-allocator-random.jar | ||||
| %{_javadir}/%{name}-user-authenticator-ldap.jar | ||||
| %{_javadir}/%{name}-user-authenticator-md5.jar | ||||
| %{_javadir}/%{name}-user-authenticator-plaintext.jar | ||||
| %{_javadir}/%{name}-vmware.jar | ||||
| %{_javadir}/%{name}-xen.jar | ||||
| %config(noreplace) %{_sysconfdir}/%{name}/server/* | ||||
| 
 | ||||
| %files agent-scripts | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent; | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent; | ||||
| 
 | ||||
| import com.cloud.agent.api.AgentControlAnswer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent; | ||||
| 
 | ||||
| import com.cloud.agent.api.AgentControlAnswer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent; | ||||
| 
 | ||||
| import com.cloud.agent.api.Command; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent; | ||||
| 
 | ||||
| import com.cloud.agent.api.StartupCommand; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| import java.util.HashMap; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| import java.util.HashMap; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| public class ExternalNetworkResourceUsageCommand extends Command { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| import com.cloud.vm.VirtualMachine; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.api; | ||||
| 
 | ||||
| import com.cloud.agent.api.Command; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| //  | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.resource.virtualnetwork; | ||||
| 
 | ||||
| import java.io.BufferedReader; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.transport; | ||||
| 
 | ||||
| import java.lang.reflect.Array; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.transport; | ||||
| 
 | ||||
| import org.apache.log4j.Logger; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.transport; | ||||
| 
 | ||||
| import java.io.ByteArrayInputStream; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.agent.transport; | ||||
| 
 | ||||
| import com.cloud.agent.api.Answer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.alert; | ||||
| 
 | ||||
| import com.cloud.utils.component.Adapter; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.alert; | ||||
| 
 | ||||
| import com.cloud.capacity.CapacityVO; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.alert; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.async; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.async; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.async; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.capacity; | ||||
| 
 | ||||
| import javax.persistence.Transient; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.certificate; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.configuration; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.configuration; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.configuration; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.consoleproxy; | ||||
| 
 | ||||
| import java.util.List; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event.dao; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event.dao; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event.dao; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.event.dao; | ||||
| 
 | ||||
| import java.sql.PreparedStatement; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.exception; | ||||
| 
 | ||||
| import com.cloud.exception.CloudException; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.exception; | ||||
| 
 | ||||
| import com.cloud.agent.api.Command; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.exception; | ||||
| 
 | ||||
| import com.cloud.utils.SerialVersionUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.exception; | ||||
| 
 | ||||
| public class UsageServerException extends CloudException { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.host; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.host; | ||||
| 
 | ||||
| /** | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.host; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.host; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.hypervisor; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.hypervisor.hyperv.resource; | ||||
| 
 | ||||
| import com.cloud.agent.api.Answer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.hypervisor.hyperv.resource; | ||||
| 
 | ||||
| import java.io.BufferedInputStream; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.hypervisor.kvm.resource; | ||||
| 
 | ||||
| import java.util.HashMap; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| public class ConsoleProxyConnectionInfo { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| public class ConsoleProxyInfo { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| public class ConsoleProxyLoadInfo { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| public class ConsoleProxyStatus { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| public class RunningHostCountInfo { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| import java.util.HashMap; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.info; | ||||
| 
 | ||||
| public class SecStorageVmLoadInfo { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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; | ||||
| 
 | ||||
| import java.util.ArrayList; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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; | ||||
| 
 | ||||
| import java.util.List; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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; | ||||
| 
 | ||||
| import com.cloud.exception.ResourceUnavailableException; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import com.cloud.agent.api.Answer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import com.cloud.agent.api.Answer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import java.io.BufferedReader; | ||||
|  | ||||
| @ -1,3 +1,19 @@ | ||||
| // 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. | ||||
| /* | ||||
|  * The contents of this file are subject to the "END USER LICENSE AGREEMENT FOR F5 | ||||
|  * Software Development Kit for iControl"; you may not use this file except in | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| /** | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.security; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import com.cloud.storage.VolumeVO; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import com.cloud.utils.component.Adapter; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import java.net.URI; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import com.cloud.agent.IAgentControl; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import java.io.PrintWriter; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource; | ||||
| 
 | ||||
| import com.cloud.utils.SerialVersionUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource.hypervisor; | ||||
| 
 | ||||
| import com.cloud.agent.api.RebootAnswer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.resource.storage; | ||||
| 
 | ||||
| import com.cloud.agent.api.storage.CreateAnswer; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.serializer; | ||||
| 
 | ||||
| 
 | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.serializer; | ||||
| 
 | ||||
| import java.lang.reflect.Field; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.io.File; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| public interface SecondaryStorage { | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.net.URI; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.UUID; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.io.File; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import javax.persistence.Column; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.net.URI; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
| @ -1,15 +1,19 @@ | ||||
| // Copyright 2012 Citrix Systems, Inc. Licensed under the | ||||
| // Apache License, Version 2.0 (the "License"); you may not use this | ||||
| // file except in compliance with the License.  Citrix Systems, Inc. | ||||
| // reserves all rights not expressly granted by 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. | ||||
| // 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 | ||||
| // | ||||
| // Automatically generated by addcopyright.py at 04/03/2012 | ||||
| //   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.storage; | ||||
| 
 | ||||
| import java.util.Date; | ||||
|  | ||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user