Skip to content

Commit

Permalink
[JBWS-3885] Removing useless classes
Browse files Browse the repository at this point in the history
  • Loading branch information
asoldano committed Jul 9, 2015
1 parent ab7866b commit 72fc685
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 165 deletions.

This file was deleted.

Expand Up @@ -22,7 +22,6 @@
package org.jboss.wsf.stack.cxf.metadata.services;

import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;

/**
Expand All @@ -35,10 +34,6 @@ public class DDBeans
{
// The Required services.
private final List<DDEndpoint> endpoints = new ArrayList<DDEndpoint>();
// Optional additional beans.
private final List<DDBean> beans = new LinkedList<DDBean>();

private final List<DDJmsAddressBean> addressBeans = new LinkedList<DDJmsAddressBean>();

public List<DDEndpoint> getEndpoints()
{
Expand All @@ -49,19 +44,4 @@ public void addEndpoint(DDEndpoint service)
{
endpoints.add(service);
}

public void addAddress(DDJmsAddressBean addressBean)
{
addressBeans.add(addressBean);
}

public List<DDBean> getBeans()
{
return beans;
}

public void addBean(DDBean bean)
{
beans.add(bean);
}
}

This file was deleted.

0 comments on commit 72fc685

Please sign in to comment.