Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Implement some methods in BuildTypesResource
Browse files Browse the repository at this point in the history
  • Loading branch information
VladRassokhin committed Apr 9, 2014
1 parent 4a20125 commit ef8eda5
Show file tree
Hide file tree
Showing 6 changed files with 296 additions and 286 deletions.
Expand Up @@ -25,11 +25,9 @@
* </pre>
*/

@XmlType(name = "propEntitiesStep", propOrder = {
"step"
})
public class PropEntitiesStep {

@Key("step")
public List<PropEntityStep> step;
@Key("count")
public Integer count;
Expand Down
Expand Up @@ -28,9 +28,6 @@
* </pre>
*/

@XmlType(name = "propEntity", propOrder = {
"properties"
})
@XmlSeeAlso({
PropEntityFeature.class,
PropEntityArtifactDep.class,
Expand All @@ -41,6 +38,7 @@
})
public class PropEntity {

@Key("properties")
public Properties properties;
@Key("id")
public String id;
Expand Down
Expand Up @@ -19,9 +19,5 @@
* </pre>
*/

@XmlType(name = "propEntityStep")
public class PropEntityStep
extends PropEntity {


public class PropEntityStep extends PropEntity {
}
Expand Up @@ -40,4 +40,10 @@ public class VcsRootRef {
@Key("locator")
public String locator;

public VcsRootRef() {
}

public VcsRootRef(String id) {
this.id = id;
}
}

0 comments on commit ef8eda5

Please sign in to comment.