Skip to content

Commit

Permalink
add default constructors
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
  • Loading branch information
lukasj committed Mar 30, 2022
1 parent d6323f8 commit 721e809
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 0 deletions.
Expand Up @@ -71,6 +71,9 @@ public class MetroConfig {
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<>();

public MetroConfig() {
}

/**
* Gets the value of the tubelines property.
*
Expand Down
Expand Up @@ -61,6 +61,9 @@ public class TubeFactoryConfig {
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<>();

public TubeFactoryConfig() {
}

/**
* Gets the value of the any property.
*
Expand Down
Expand Up @@ -62,6 +62,9 @@ public class TubeFactoryList {
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<>();

public TubeFactoryList() {
}

/**
* Gets the value of the tubeFactoryConfigs property.
*
Expand Down
Expand Up @@ -74,6 +74,9 @@ public class TubelineDefinition {
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<>();

public TubelineDefinition() {
}

/**
* Gets the value of the clientSide property.
*
Expand Down
Expand Up @@ -34,6 +34,9 @@ public class TubelineFeatureReader implements FeatureReader {
private static final Logger LOGGER = Logger.getLogger(TubelineFeatureReader.class);
private static final QName NAME_ATTRIBUTE_NAME = new QName("name");

public TubelineFeatureReader() {
}

// TODO implement
@Override
public TubelineFeature parse(XMLEventReader reader) throws WebServiceException {
Expand Down
Expand Up @@ -68,6 +68,9 @@ public class TubelineMapping {
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<>();

public TubelineMapping() {
}

/**
* Gets the value of the endpointRef property.
*
Expand Down
Expand Up @@ -70,6 +70,9 @@ public class Tubelines {
@XmlAnyAttribute
private Map<QName, String> otherAttributes = new HashMap<>();

public Tubelines() {
}

/**
* Gets the value of the tubelineMappings property.
*
Expand Down

0 comments on commit 721e809

Please sign in to comment.