Remove @author tag from non third-party source files in core folder

This commit is contained in:
Mice Xia 2012-08-13 15:20:10 +08:00
parent 42fbf24f86
commit 89015cbf3c
17 changed files with 0 additions and 49 deletions

View File

@ -16,10 +16,6 @@
// under the License. // under the License.
package com.cloud.host; package com.cloud.host;
/**
* @author chiradeep
*
*/
public final class HostInfo { public final class HostInfo {
public static final String HYPERVISOR_VERSION = "Hypervisor.Version"; //tricky since KVM has userspace version and kernel version public static final String HYPERVISOR_VERSION = "Hypervisor.Version"; //tricky since KVM has userspace version and kernel version
public static final String HOST_OS = "Host.OS"; //Fedora, XenServer, Ubuntu, etc public static final String HOST_OS = "Host.OS"; //Fedora, XenServer, Ubuntu, etc

View File

@ -38,10 +38,6 @@ import com.cloud.network.rules.LbStickinessMethod.StickinessMethodType;
import com.cloud.utils.net.NetUtils; import com.cloud.utils.net.NetUtils;
/**
* @author chiradeep
*
*/
public class HAProxyConfigurator implements LoadBalancerConfigurator { public class HAProxyConfigurator implements LoadBalancerConfigurator {
private static final Logger s_logger = Logger.getLogger(HAProxyConfigurator.class); private static final Logger s_logger = Logger.getLogger(HAProxyConfigurator.class);

View File

@ -22,10 +22,6 @@ import com.cloud.agent.api.routing.LoadBalancerConfigCommand;
import com.cloud.agent.api.to.PortForwardingRuleTO; import com.cloud.agent.api.to.PortForwardingRuleTO;
/**
* @author chiradeep
*
*/
public interface LoadBalancerConfigurator { public interface LoadBalancerConfigurator {
public final static int ADD = 0; public final static int ADD = 0;
public final static int REMOVE = 1; public final static int REMOVE = 1;

View File

@ -18,10 +18,6 @@ package com.cloud.storage;
import java.util.Date; import java.util.Date;
/**
* @author chiradeep
*
*/
public interface StoragePoolHostAssoc { public interface StoragePoolHostAssoc {
long getHostId(); long getHostId();

View File

@ -31,7 +31,6 @@ import com.cloud.utils.db.GenericDaoBase;
/** /**
* Join table for storage pools and hosts * Join table for storage pools and hosts
* @author chiradeep
* *
*/ */
@Entity @Entity

View File

@ -34,10 +34,6 @@ import com.cloud.api.Identity;
import com.cloud.storage.Storage.StoragePoolType; import com.cloud.storage.Storage.StoragePoolType;
import com.cloud.utils.db.GenericDao; import com.cloud.utils.db.GenericDao;
/**
* @author chiradeep
*
*/
@Entity @Entity
@Table(name="storage_pool") @Table(name="storage_pool")
public class StoragePoolVO implements StoragePool, Identity { public class StoragePoolVO implements StoragePool, Identity {

View File

@ -32,10 +32,6 @@ import javax.persistence.TemporalType;
import com.cloud.utils.NumbersUtil; import com.cloud.utils.NumbersUtil;
import com.cloud.utils.db.GenericDaoBase; import com.cloud.utils.db.GenericDaoBase;
/**
* @author nitin
*
*/
@Entity @Entity
@Table(name="upload") @Table(name="upload")
public class UploadVO implements Upload { public class UploadVO implements Upload {

View File

@ -33,7 +33,6 @@ import com.cloud.utils.db.GenericDaoBase;
/** /**
* Join table for storage hosts and templates * Join table for storage hosts and templates
* @author chiradeep
* *
*/ */
@Entity @Entity

View File

@ -33,7 +33,6 @@ import com.cloud.utils.db.GenericDaoBase;
/** /**
* Join table for storage pools and templates * Join table for storage pools and templates
* @author chiradeep
* *
*/ */
@Entity @Entity

View File

@ -36,7 +36,6 @@ import com.cloud.utils.db.GenericDaoBase;
/** /**
* Join table for storage hosts and volumes * Join table for storage hosts and volumes
* @author Nitin
* *
*/ */
@Entity @Entity

View File

@ -28,10 +28,6 @@ import com.cloud.storage.Storage.ImageFormat;
import com.cloud.storage.resource.SecondaryStorageResource; import com.cloud.storage.resource.SecondaryStorageResource;
import com.cloud.utils.component.Manager; import com.cloud.utils.component.Manager;
/**
* @author chiradeep
*
*/
public interface DownloadManager extends Manager { public interface DownloadManager extends Manager {
/** /**

View File

@ -68,10 +68,6 @@ import com.cloud.utils.exception.CloudRuntimeException;
import com.cloud.utils.script.OutputInterpreter; import com.cloud.utils.script.OutputInterpreter;
import com.cloud.utils.script.Script; import com.cloud.utils.script.Script;
/**
* @author chiradeep
*
*/
@Local(value = DownloadManager.class) @Local(value = DownloadManager.class)
public class DownloadManagerImpl implements DownloadManager { public class DownloadManagerImpl implements DownloadManager {
private String _name; private String _name;

View File

@ -52,7 +52,6 @@ import com.cloud.utils.Pair;
/** /**
* Download a template file using HTTP * Download a template file using HTTP
* @author Chiradeep
* *
*/ */
public class HttpTemplateDownloader implements TemplateDownloader { public class HttpTemplateDownloader implements TemplateDownloader {

View File

@ -16,10 +16,6 @@
// under the License. // under the License.
package com.cloud.storage.template; package com.cloud.storage.template;
/**
* @author chiradeep
*
*/
public final class TemplateConstants { public final class TemplateConstants {
public static final String DEFAULT_TMPLT_ROOT_DIR = "template"; public static final String DEFAULT_TMPLT_ROOT_DIR = "template";
public static final String DEFAULT_VOLUME_ROOT_DIR = "volumes"; public static final String DEFAULT_VOLUME_ROOT_DIR = "volumes";

View File

@ -16,16 +16,11 @@
// under the License. // under the License.
package com.cloud.storage.template; package com.cloud.storage.template;
/**
* @author Chiradeep
*
*/
public interface TemplateDownloader extends Runnable{ public interface TemplateDownloader extends Runnable{
/** /**
* Callback used to notify completion of download * Callback used to notify completion of download
* @author chiradeep
* *
*/ */
public interface DownloadCompleteCallback { public interface DownloadCompleteCallback {

View File

@ -23,7 +23,6 @@ public interface TemplateUploader extends Runnable{
/** /**
* Callback used to notify completion of upload * Callback used to notify completion of upload
* @author nitin
* *
*/ */
public interface UploadCompleteCallback { public interface UploadCompleteCallback {

View File

@ -36,8 +36,6 @@ import com.cloud.utils.db.GenericDao;
/** /**
* A bean representing a user * A bean representing a user
* *
* @author Will Chan
*
*/ */
@Entity @Entity
@Table(name = "user") @Table(name = "user")