service name added

This commit is contained in:
insanity 2017-06-28 20:31:52 +09:00
parent ecbea217f2
commit 08d593a5c6
20 changed files with 20 additions and 20 deletions

View File

@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("ApiKeyService")
public class ApiKeyService { public class ApiKeyService {

View File

@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("DomainMemberService")
public class DomainMemberService { public class DomainMemberService {
@Autowired @Autowired

View File

@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("DomainService")
public class DomainService { public class DomainService {
@Autowired @Autowired

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by geek on 17. 6. 28. * Created by geek on 17. 6. 28.
*/ */
@Service @Service("EmailAuthService")
public class EmailAuthService { public class EmailAuthService {
@Autowired() @Autowired()

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraHostService")
public class InfraHostService { public class InfraHostService {
@Autowired @Autowired

View File

@ -8,7 +8,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraMachineService")
public class InfraMachineService { public class InfraMachineService {
@Autowired @Autowired
InfraMachineDAO infraMachineDAO; InfraMachineDAO infraMachineDAO;

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraOSApplicationService")
public class InfraOSApplicationService { public class InfraOSApplicationService {
@Autowired @Autowired

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraOSDaemonService")
public class InfraOSDaemonService { public class InfraOSDaemonService {
@Autowired @Autowired

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraOSPortService")
public class InfraOSPortService { public class InfraOSPortService {
@Autowired @Autowired

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraOSService")
public class InfraOSService { public class InfraOSService {
@Autowired @Autowired

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraService")
public class InfraService { public class InfraService {
@Autowired @Autowired

View File

@ -7,7 +7,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("InfraServiceService")
public class InfraServiceService { public class InfraServiceService {
@Autowired @Autowired
InfraServiceDAO infraServiceDAO; InfraServiceDAO infraServiceDAO;

View File

@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
/** /**
* Created by geek on 17. 6. 28. * Created by geek on 17. 6. 28.
*/ */
@Service @Service("MemberService")
public class MemberService { public class MemberService {
@Autowired @Autowired

View File

@ -11,7 +11,7 @@ import java.util.List;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("NoAuthProbeService")
public class NoAuthProbeService { public class NoAuthProbeService {
@Autowired @Autowired

View File

@ -11,7 +11,7 @@ import java.util.List;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("ProbeService")
public class ProbeService { public class ProbeService {
@Autowired @Autowired

View File

@ -11,7 +11,7 @@ import java.util.List;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("ProbeTaskService")
public class ProbeTaskService { public class ProbeTaskService {
@Autowired @Autowired

View File

@ -11,7 +11,7 @@ import java.util.List;
/** /**
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("SensorItemService")
public class SensorItemService { public class SensorItemService {
@Autowired @Autowired

View File

@ -12,7 +12,7 @@ import java.util.List;
/** /**
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("SensorService")
public class SensorService { public class SensorService {
@Autowired @Autowired

View File

@ -18,7 +18,7 @@ import java.util.List;
/** /**
* Created by snoop on 17. 6. 28. * Created by snoop on 17. 6. 28.
*/ */
@Service @Service("TargetDiscoveryService")
public class TargetDiscoveryService { public class TargetDiscoveryService {
@Autowired @Autowired

View File

@ -11,7 +11,7 @@ import java.util.List;
/** /**
* Created by insanity on 17. 6. 28. * Created by insanity on 17. 6. 28.
*/ */
@Service @Service("TargetService")
public class TargetService { public class TargetService {
@Autowired @Autowired