mirror of
https://github.com/apache/cloudstack
synced 2026-08-02 13:35:41 +00:00
15 lines
272 B
Java
15 lines
272 B
Java
package com.cloud.api;
|
|
|
|
public abstract class BaseAsyncCreateCmd extends BaseAsyncCmd {
|
|
@Parameter(name="portforwardingserviceid")
|
|
private Long id;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
}
|