forked from wso2/carbon-apimgt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Revision create, delete, revision deploy, revision undeploy, rev…
…ision restore scenarios
- Loading branch information
Showing
15 changed files
with
244 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...2.carbon.apimgt.api/src/main/java/org/wso2/carbon/apimgt/api/model/CustomBackendData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
package org.wso2.carbon.apimgt.api.model; | ||
|
||
import java.io.InputStream; | ||
|
||
public class CustomBackendData { | ||
private String Id; | ||
private InputStream sequence; | ||
private String type; | ||
private String name; | ||
private String apiUUID; | ||
private String revisionUUID; | ||
|
||
public InputStream getSequence() { | ||
return sequence; | ||
} | ||
|
||
public void setSequence(InputStream sequence) { | ||
this.sequence = sequence; | ||
} | ||
|
||
public String getId() { | ||
return Id; | ||
} | ||
|
||
public void setId(String id) { | ||
Id = id; | ||
} | ||
|
||
public String getType() { | ||
return type; | ||
} | ||
|
||
public void setType(String type) { | ||
this.type = type; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getApiUUID() { | ||
return apiUUID; | ||
} | ||
|
||
public void setApiUUID(String apiUUID) { | ||
this.apiUUID = apiUUID; | ||
} | ||
|
||
public String getRevisionUUID() { | ||
return revisionUUID; | ||
} | ||
|
||
public void setRevisionUUID(String revisionUUID) { | ||
this.revisionUUID = revisionUUID; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.