Omaha #3255 fix build

Change-Id: I0bff28eb7d430c7a789539a76c893ecf0a64ac46

Former-commit-id: 579cef6ab063bae1df0cfe85411d174dc75b08bd
This commit is contained in:
Nate Jensen 2014-06-17 07:40:18 -05:00
parent 14b5c0d792
commit a8bae916f3
3 changed files with 5 additions and 3 deletions

View file

@ -4,7 +4,7 @@
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<bean id="registryRestClient"
class="com.raytheon.uf.common.registry.services.RegistryRESTServices">
class="com.raytheon.uf.edex.registry.ebxml.services.RegistryRESTServices">
<property name="serviceConfig" ref="RegistryServiceConfig" />
<property name="securityConfig" ref="securityConfiguration" />
</bean>

View file

@ -17,7 +17,7 @@
* See the AWIPS II Master Rights File ("Master Rights File.pdf") for
* further licensing information.
**/
package com.raytheon.uf.common.registry.services;
package com.raytheon.uf.edex.registry.ebxml.services;
import java.lang.reflect.Proxy;
import java.net.URL;
@ -38,6 +38,8 @@ import com.google.common.io.Resources;
import com.raytheon.uf.common.registry.RegistryJaxbManager;
import com.raytheon.uf.common.registry.RegistryNamespaceMapper;
import com.raytheon.uf.common.registry.ebxml.RegistryUtil;
import com.raytheon.uf.common.registry.services.RegistryServiceConfiguration;
import com.raytheon.uf.common.registry.services.RegistryServiceException;
import com.raytheon.uf.common.registry.services.rest.IRegistryObjectsRestService;
import com.raytheon.uf.common.registry.services.rest.IRepositoryItemsRestService;
import com.raytheon.uf.edex.security.SecurityConfiguration;

View file

@ -43,12 +43,12 @@ import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
import com.raytheon.uf.common.registry.schemas.ebxml.util.annotations.RegistryObjectReference;
import com.raytheon.uf.common.registry.services.RegistryRESTServices;
import com.raytheon.uf.common.status.IUFStatusHandler;
import com.raytheon.uf.common.status.UFStatus;
import com.raytheon.uf.edex.registry.ebxml.dao.DynamicObjectRefDao;
import com.raytheon.uf.edex.registry.ebxml.dao.RegistryObjectDao;
import com.raytheon.uf.edex.registry.ebxml.exception.EbxmlRegistryException;
import com.raytheon.uf.edex.registry.ebxml.services.RegistryRESTServices;
import com.raytheon.uf.edex.registry.ebxml.util.EbxmlExceptionUtil;
/**