Uses of Interface
net.daum.dna.oauth.DaumOAuth

Packages that use DaumOAuth
net.daum.dna.api.basic   
net.daum.dna.api.dao   
net.daum.dna.api.service   
net.daum.dna.oauth.basic DaumOAuth 인증시에 필요한 클래스를 제공합니다. net.daum.dna.oauth의 interface가 구현되어있습니다. 
net.daum.dna.util Singletone Class 인 APIUtils를 정의하며 static 변수와 Exception handling , Error Check method , String 변환 Method 를 담고 있는 Package 
 

Uses of DaumOAuth in net.daum.dna.api.basic
 

Methods in net.daum.dna.api.basic that return DaumOAuth
 DaumOAuth DefaultBlogAPI.getDaumoAuth()
          Gets the daum oauth.
 DaumOAuth DefaultYozmAPI.getOauth()
          Gets the oauth.
 DaumOAuth DefaultCafeAPI.getOauth()
          Gets the oauth.
 

Methods in net.daum.dna.api.basic with parameters of type DaumOAuth
 void DefaultBlogAPI.setDaumOAuth(DaumOAuth oauth)
          Sets the daum oauth.
 void DefaultYozmAPI.setOauth(DaumOAuth oauth)
          Sets the oauth.
 void DefaultCafeAPI.setOauth(DaumOAuth oauth)
          Sets the oauth.
 

Constructors in net.daum.dna.api.basic with parameters of type DaumOAuth
DefaultBlogAPI(DaumOAuth oauth)
          Instantiates a new default blog API.
DefaultCafeAPI(DaumOAuth oauth)
          Instantiates a new default cafe api.
DefaultYozmAPI(DaumOAuth oauth)
          Instantiates a new default yozm api.
 

Uses of DaumOAuth in net.daum.dna.api.dao
 

Methods in net.daum.dna.api.dao that return DaumOAuth
 DaumOAuth BlogDAO.getDaumoAuth()
          Gets the daum oauth.
 DaumOAuth YozmDAO.getOauth()
          Gets the oauth.
 DaumOAuth CafeDAO.getOauth()
          Gets the oauth.
 

Methods in net.daum.dna.api.dao with parameters of type DaumOAuth
 void BlogDAO.setDaumOAuth(DaumOAuth oauth)
          Sets the daum oauth.
 void YozmDAO.setOauth(DaumOAuth oauth)
          Sets the oauth.
 void CafeDAO.setOauth(DaumOAuth oauth)
          Sets the oauth.
 

Constructors in net.daum.dna.api.dao with parameters of type DaumOAuth
BlogDAO(DaumOAuth oauth)
          Instantiates a new default blog API.
CafeDAO(DaumOAuth oauth)
          Instantiates a new cafe dao.
YozmDAO(DaumOAuth oauth)
          Instantiates a new yozm dao.
 

Uses of DaumOAuth in net.daum.dna.api.service
 

Methods in net.daum.dna.api.service that return DaumOAuth
 DaumOAuth BlogService.getDaumoAuth()
          Gets the daum oauth.
 DaumOAuth YozmService.getOauth()
          Gets the oauth.
 DaumOAuth CafeService.getOauth()
          Gets the oauth.
 

Methods in net.daum.dna.api.service with parameters of type DaumOAuth
 void BlogService.setDaumOAuth(DaumOAuth oauth)
          Sets the daum oauth.
 void YozmService.setOauth(DaumOAuth oauth)
          Sets the oauth.
 void CafeService.setOauth(DaumOAuth oauth)
          Sets the oauth.
 

Constructors in net.daum.dna.api.service with parameters of type DaumOAuth
BlogService(DaumOAuth oauth)
          Instantiates a new default blog API.
CafeService(DaumOAuth oauth)
          Instantiates a new cafe service.
YozmService(DaumOAuth oauth)
          Instantiates a new yozm service.
 

Uses of DaumOAuth in net.daum.dna.oauth.basic
 

Classes in net.daum.dna.oauth.basic that implement DaumOAuth
 class DefaultDaumOAuth
          The Class DefaultDaumOAuth.
 

Uses of DaumOAuth in net.daum.dna.util
 

Methods in net.daum.dna.util with parameters of type DaumOAuth
 java.net.HttpURLConnection APIUtils.getHttpURLConnection(java.lang.String fullURL, java.lang.String method, DaumOAuth oauth)
          query 와 method , oauth token 을 받아서 API 에 호출하는 합니다.